Searched refs:launchFlags (Results 1 – 6 of 6) sorted by relevance
/aosp12/frameworks/base/services/tests/wmtests/src/com/android/server/wm/ |
H A D | ActivityStarterTests.java | 165 private void verifyStartActivityPreconditions(int preconditions, int launchFlags, in verifyStartActivityPreconditions() argument 174 verifyStartActivityPreconditionsUntracked(preconditions, launchFlags, expectedResult); in verifyStartActivityPreconditions() 190 private void verifyStartActivityPreconditionsUntracked(int preconditions, int launchFlags, in verifyStartActivityPreconditionsUntracked() argument 198 prepareStarter(launchFlags); in verifyStartActivityPreconditionsUntracked() 211 intent.setFlags(launchFlags); in verifyStartActivityPreconditionsUntracked() 302 private ActivityStarter prepareStarter(@Intent.Flags int launchFlags) { in prepareStarter() argument 303 return prepareStarter(launchFlags, true /* mockGetLaunchStack */, LAUNCH_MULTIPLE); in prepareStarter() 306 private ActivityStarter prepareStarter(@Intent.Flags int launchFlags, in prepareStarter() argument 308 return prepareStarter(launchFlags, mockGetLaunchStack, LAUNCH_MULTIPLE); in prepareStarter() 327 private ActivityStarter prepareStarter(@Intent.Flags int launchFlags, in prepareStarter() argument [all …]
|
/aosp12/frameworks/native/cmds/service/ |
H A D | service.cpp | 251 int launchFlags = 0; in main() local 282 launchFlags = atoi(value); in main() 306 data.writeInt32(launchFlags); in main()
|
/aosp12/frameworks/base/services/core/java/com/android/server/wm/ |
H A D | ActivityStarter.java | 886 final int launchFlags = intent.getFlags(); in executeRequest() local 938 if ((launchFlags & FLAG_ACTIVITY_NEW_TASK) == 0 in executeRequest() 2851 boolean launchSingleTask, int launchFlags) { in adjustLaunchFlagsToDocumentMode() argument 2852 if ((launchFlags & Intent.FLAG_ACTIVITY_NEW_DOCUMENT) != 0 && in adjustLaunchFlagsToDocumentMode() 2857 launchFlags &= in adjustLaunchFlagsToDocumentMode() 2864 launchFlags |= Intent.FLAG_ACTIVITY_NEW_DOCUMENT; in adjustLaunchFlagsToDocumentMode() 2867 launchFlags |= Intent.FLAG_ACTIVITY_NEW_DOCUMENT; in adjustLaunchFlagsToDocumentMode() 2877 launchFlags &= ~(Intent.FLAG_ACTIVITY_NEW_DOCUMENT in adjustLaunchFlagsToDocumentMode() 2883 launchFlags &= in adjustLaunchFlagsToDocumentMode() 2889 return launchFlags; in adjustLaunchFlagsToDocumentMode() [all …]
|
H A D | TaskDisplayArea.java | 1092 @Nullable ActivityOptions options, int launchFlags) { 1105 sourceTask, launchFlags); 1132 .setLaunchFlags(launchFlags) 1144 @Nullable LaunchParams launchParams, int launchFlags, int activityType, boolean onTop) { 1159 options, launchFlags); 1257 @Nullable Task sourceTask, int launchFlags) { 1268 if ((launchFlags & FLAG_ACTIVITY_LAUNCH_ADJACENT) != 0
|
H A D | Task.java | 1639 ActivityRecord performClearTaskForReuseLocked(ActivityRecord newR, int launchFlags) { in performClearTaskForReuseLocked() argument 1644 result = performClearTaskLocked(newR, launchFlags); in performClearTaskForReuseLocked() 1663 private ActivityRecord performClearTaskLocked(ActivityRecord newR, int launchFlags) { in performClearTaskLocked() argument 1675 && (launchFlags & Intent.FLAG_ACTIVITY_SINGLE_TOP) == 0 in performClearTaskLocked() 1676 && !ActivityStarter.isDocumentLaunchesIntoExisting(launchFlags)) { in performClearTaskLocked() 6297 Builder setLaunchFlags(int launchFlags) { 6298 mLaunchFlags = launchFlags;
|
H A D | RootWindowContainer.java | 2918 @Nullable LaunchParamsController.LaunchParams launchParams, int launchFlags, in getLaunchRootTask() argument 2983 sourceTask, launchParams, launchFlags, activityType, onTop); in getLaunchRootTask() 3028 launchFlags, activityType, onTop); in getLaunchRootTask()
|