Home
last modified time | relevance | path

Searched refs:showTransient (Results 1 – 19 of 19) sorted by relevance

/aosp12/packages/apps/Car/SystemUI/tests/src/com/android/systemui/car/systembar/
H A DCarSystemBarTest.java248 mCarSystemBar.showTransient(randomDisplay, insetTypes); in showTransient_wrongDisplayId_transientModeNotUpdated()
261 mCarSystemBar.showTransient(Display.DEFAULT_DISPLAY, insetTypes); in showTransient_correctDisplayId_noStatusBarInset_transientModeNotUpdated()
274 mCarSystemBar.showTransient(Display.DEFAULT_DISPLAY, insetTypes); in showTransient_correctDisplayId_statusBarInset_transientModeUpdated()
287 mCarSystemBar.showTransient(Display.DEFAULT_DISPLAY, insetTypes); in showTransient_correctDisplayId_noNavBarInset_transientModeNotUpdated()
300 mCarSystemBar.showTransient(Display.DEFAULT_DISPLAY, insetTypes); in showTransient_correctDisplayId_navBarInset_transientModeUpdated()
311 mCarSystemBar.showTransient(Display.DEFAULT_DISPLAY, in abortTransient_wrongDisplayId_transientModeNotCleared()
331 mCarSystemBar.showTransient(Display.DEFAULT_DISPLAY, in abortTransient_correctDisplayId_noInsets_transientModeNotCleared()
350 mCarSystemBar.showTransient(Display.DEFAULT_DISPLAY, in abortTransient_correctDisplayId_statusBarInset_transientModeCleared()
369 mCarSystemBar.showTransient(Display.DEFAULT_DISPLAY, in abortTransient_correctDisplayId_navBarInset_transientModeCleared()
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
H A DCommandQueueTest.java154 mCommandQueue.showTransient(DEFAULT_DISPLAY, types, true /* isGestureOnSystemBar */); in testShowTransient()
156 verify(mCallbacks).showTransient(eq(DEFAULT_DISPLAY), eq(types), eq(true)); in testShowTransient()
162 mCommandQueue.showTransient(SECONDARY_DISPLAY, types, true /* isGestureOnSystemBar */); in testShowTransientForSecondaryDisplay()
164 verify(mCallbacks).showTransient(eq(SECONDARY_DISPLAY), eq(types), eq(true)); in testShowTransientForSecondaryDisplay()
H A DKeyguardIndicationControllerTest.java719 verify(mRotateTextViewController, never()).showTransient(anyString()); in faceAuthMessageSuppressed()
753 verify(mRotateTextViewController, never()).showTransient(anyString()); in verifyHideIndication()
762 verify(mRotateTextViewController).showTransient(eq(message)); in verifyTransientMessage()
767 verify(mRotateTextViewController, never()).showTransient(anyString()); in verifyNoMessage()
/aosp12/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
H A DInsetsPolicyTest.java294 policy.showTransient(new int[]{ITYPE_STATUS_BAR, ITYPE_NAVIGATION_BAR}, in testShowTransientBars_bothCanBeTransient_appGetsBothFakeControls()
323 policy.showTransient(new int[]{ITYPE_STATUS_BAR, ITYPE_NAVIGATION_BAR}, in testShowTransientBars_statusBarCanBeTransient_appGetsStatusBarFakeControl()
356 policy.showTransient(new int[]{ITYPE_STATUS_BAR, ITYPE_NAVIGATION_BAR}, in testAbortTransientBars_bothCanBeAborted_appGetsBothRealControls()
408 policy.showTransient(new int[]{ITYPE_STATUS_BAR, ITYPE_NAVIGATION_BAR}, in testShowTransientBars_abortsWhenControlTargetChanges()
H A DInsetsStateControllerTest.java335 mDisplayContent.getInsetsPolicy().showTransient(new int[] { ITYPE_STATUS_BAR }, in testTransientVisibilityOfFixedRotationState()
/aosp12/frameworks/base/services/core/java/com/android/server/statusbar/
H A DStatusBarManagerInternal.java139 void showTransient(int displayId, @InternalInsetsType int[] types, in showTransient() method
H A DStatusBarManagerService.java543 public void showTransient(int displayId, @InternalInsetsType int[] types,
545 getUiState(displayId).showTransient(types);
548 mBar.showTransient(displayId, types, isGestureOnSystemBar);
1137 private void showTransient(@InternalInsetsType int[] types) { in showTransient() method in StatusBarManagerService.UiState
/aosp12/frameworks/base/core/java/com/android/internal/statusbar/
H A DIStatusBar.aidl211 void showTransient(int displayId, in int[] types, boolean isGestureOnSystemBar); in showTransient() method
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DCommandQueue.java348 default void showTransient(int displayId, @InternalInsetsType int[] types) { } in showTransient() method
353 default void showTransient(int displayId, @InternalInsetsType int[] types, in showTransient() method
355 showTransient(displayId, types); in showTransient()
1030 public void showTransient(int displayId, int[] types, boolean isGestureOnSystemBar) { in showTransient() method in CommandQueue
1418 mCallbacks.get(i).showTransient(displayId, types, isGestureOnSystemBar); in handleMessage()
H A DKeyguardIndicationController.java422 mRotateTextViewController.showTransient(mTransientIndication); in updateTransient()
/aosp12/frameworks/base/services/core/java/com/android/server/wm/
H A DInsetsPolicy.java162 void showTransient(@InternalInsetsType int[] types, boolean isGestureOnSystemBar) { in showTransient() method in InsetsPolicy
179 statusBarManagerInternal.showTransient(mDisplayContent.getDisplayId(), in showTransient()
H A DDisplayPolicy.java2690 mDisplayContent.getInsetsPolicy().showTransient(SHOW_TYPES_FOR_SWIPE,
2913 mDisplayContent.getInsetsPolicy().showTransient(SHOW_TYPES_FOR_PANIC,
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/
H A DKeyguardIndicationRotateTextViewControllerTest.java234 mController.showTransient(TEST_MESSAGE_2); in testTransientIndication()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
H A DKeyguardIndicationRotateTextViewController.java203 public void showTransient(CharSequence newIndication) { in showTransient() method in KeyguardIndicationRotateTextViewController
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/
H A DTaskbarDelegate.java353 public void showTransient(int displayId, int[] types, boolean isGestureOnSystemBar) {
H A DNavigationBar.java997 public void showTransient(int displayId, @InternalInsetsType int[] types, in showTransient() method in NavigationBar
/aosp12/packages/apps/Car/SystemUI/src/com/android/systemui/car/systembar/
H A DCarSystemBar.java529 public void showTransient(int displayId, int[] types) { in showTransient() method in CarSystemBar
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarCommandQueueCallbacks.java498 public void showTransient(int displayId, @InternalInsetsType int[] types, in showTransient() method in StatusBarCommandQueueCallbacks
/aosp12/frameworks/base/services/
H A Dart-profile39094 HPLcom/android/server/statusbar/StatusBarManagerService$1;->showTransient(I[I)V
39137 HPLcom/android/server/statusbar/StatusBarManagerService$UiState;->showTransient([I)V
46705 PLcom/android/server/wm/InsetsPolicy;->lambda$showTransient$0$InsetsPolicy(J)V
46708 HPLcom/android/server/wm/InsetsPolicy;->showTransient([I)V+]Lcom/android/server/wm/WindowAnimator;L…