Home
last modified time | relevance | path

Searched refs:exitSplitScreen (Results 1 – 6 of 6) sorted by relevance

/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/splitscreen/
H A DStageCoordinator.java507 mMainExecutor.execute(() -> exitSplitScreen( in startShortcut()
531 mMainExecutor.execute(() -> exitSplitScreen( in startShortcut()
596 mMainExecutor.execute(() -> exitSplitScreen( in startIntentLegacy()
968 exitSplitScreen(null /* childrenToTop */, EXIT_REASON_RECREATE_SPLIT); in startWithLegacyTransition()
1132 exitSplitScreen(mMainStage.getChildCount() == 0 in onRemoteAnimationFinishedOrCancelled()
1346 exitSplitScreen(toTop, EXIT_REASON_SCREEN_LOCKED_SHOW_ON_TOP); in onFinishedWakingUp()
1360 exitSplitScreen( in onFinishedWakingUp()
1372 void exitSplitScreen(int toTopTaskId, @ExitReason int exitReason) { in exitSplitScreen() method in StageCoordinator
1389 private void exitSplitScreen(@Nullable StageTaskListener childrenToTop, in exitSplitScreen() method in StageCoordinator
1939 exitSplitScreen(null /* childrenToTop */, EXIT_REASON_RETURN_HOME); in onStageVisibilityChanged()
[all …]
H A DISplitScreen.aidl66 oneway void exitSplitScreen(int toTopTaskId) = 5; in exitSplitScreen() method
H A DSplitScreenController.java449 public void exitSplitScreen(int toTopTaskId, @ExitReason int exitReason) { in exitSplitScreen() method in SplitScreenController
450 mStageCoordinator.exitSplitScreen(toTopTaskId, exitReason); in exitSplitScreen()
1194 public void exitSplitScreen(int toTopTaskId) { in exitSplitScreen() method in SplitScreenController.ISplitScreenImpl
1196 (controller) -> controller.exitSplitScreen(toTopTaskId, EXIT_REASON_UNKNOWN)); in exitSplitScreen()
/aosp14/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/splitscreen/
H A DStageCoordinatorTests.java244 mStageCoordinator.exitSplitScreen(INVALID_TASK_ID, EXIT_REASON_RETURN_HOME); in testExitSplitScreen()
255 mStageCoordinator.exitSplitScreen(testTaskId, EXIT_REASON_RETURN_HOME); in testExitSplitScreenToMainStage()
267 mStageCoordinator.exitSplitScreen(testTaskId, EXIT_REASON_RETURN_HOME); in testExitSplitScreenToSideStage()
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/draganddrop/
H A DDragAndDropPolicy.java285 void exitSplitScreen(int toTopTaskId, int exitTrigger); in exitSplitScreen() method
337 public void exitSplitScreen(int toTopTaskId, int exitTrigger) { in exitSplitScreen() method in DragAndDropPolicy.DefaultStarter
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/
H A DPipTaskOrganizer.java612 split.exitSplitScreen(INVALID_TASK_ID, in exitPip()