Home
last modified time | relevance | path

Searched refs:mPrimaryBouncerInteractor (Results 1 – 11 of 11) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
H A DStatusBarKeyguardViewManagerTest.java204 mPrimaryBouncerInteractor, in setUp()
242 verify(mPrimaryBouncerInteractor).show(eq(true)); in dismissWithAction_AfterKeyguardGoneSetToFalse()
264 verify(mPrimaryBouncerInteractor).show(eq(true)); in showBouncer_showsTheBouncer()
291 reset(mPrimaryBouncerInteractor); in onPanelExpansionChanged_duplicateEventsAreIgnored()
309 verify(mPrimaryBouncerInteractor).show(eq(false)); in onPanelExpansionChanged_showsBouncerWhenSwiping()
312 reset(mPrimaryBouncerInteractor); in onPanelExpansionChanged_showsBouncerWhenSwiping()
318 reset(mPrimaryBouncerInteractor); in onPanelExpansionChanged_showsBouncerWhenSwiping()
556 verify(mPrimaryBouncerInteractor).updateResources(); in testUpdateResources_delegatesToBouncer()
707 mPrimaryBouncerInteractor, in hideAlternateBouncer_beforeCentralSurfacesRegistered()
753 reset(mPrimaryBouncerInteractor); in testResetBouncerAnimatingAway()
[all …]
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarKeyguardViewManager.java390 mPrimaryBouncerInteractor = primaryBouncerInteractor; in StatusBarKeyguardViewManager()
634 mPrimaryBouncerInteractor.show(true); in showBouncerOrKeyguard()
665 mPrimaryBouncerInteractor.hide(); in hideBouncer()
683 mPrimaryBouncerInteractor.show(scrimmed); in showPrimaryBouncer()
839 mPrimaryBouncerInteractor.hide(); in onFinishedGoingToSleep()
1432 mPrimaryBouncerInteractor.updateResources(); in updateResources()
1553 mPrimaryBouncerInteractor.setKeyguardPosition(x); in updateKeyguardPosition()
1593 return mPrimaryBouncerInteractor.isInTransit(); in isPrimaryBouncerInTransit()
1600 return mPrimaryBouncerInteractor.isFullyShowing(); in primaryBouncerIsShowing()
1607 return mPrimaryBouncerInteractor.isScrimmed(); in primaryBouncerIsScrimmed()
[all …]
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationStackScrollLayoutControllerTest.java138 @Mock private PrimaryBouncerInteractor mPrimaryBouncerInteractor; field in NotificationStackScrollLayoutControllerTest
291 when(mPrimaryBouncerInteractor.isBouncerShowing()).thenReturn(false); in testUpdateEmptyShadeView_bouncerShowing_flagOff_hideEmptyView()
311 when(mPrimaryBouncerInteractor.isBouncerShowing()).thenReturn(true); in testUpdateEmptyShadeView_bouncerShowing_flagOn_hideEmptyView()
333 when(mPrimaryBouncerInteractor.isBouncerShowing()).thenReturn(true); in testUpdateEmptyShadeView_bouncerNotShowing_flagOff_showEmptyView()
353 when(mPrimaryBouncerInteractor.isBouncerShowing()).thenReturn(false); in testUpdateEmptyShadeView_bouncerNotShowing_flagOn_showEmptyView()
684 mPrimaryBouncerInteractor, in initController()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/
H A DUdfpsKeyguardViewLegacyControllerBaseTest.java74 protected @Mock PrimaryBouncerInteractor mPrimaryBouncerInteractor; field in UdfpsKeyguardViewLegacyControllerBaseTest
170 mPrimaryBouncerInteractor, in createUdfpsKeyguardViewController()
H A DUdfpsKeyguardViewLegacyControllerWithCoroutinesTest.kt86 mPrimaryBouncerInteractor =
H A DUdfpsControllerTest.java218 private PrimaryBouncerInteractor mPrimaryBouncerInteractor; field in UdfpsControllerTest
328 mPrimaryBouncerInteractor, mSinglePointerTouchProcessor, mSessionTracker, in initUdfpsController()
1643 when(mPrimaryBouncerInteractor.isInTransit()).thenReturn(false); in onTouch_withNewTouchDetection_qsDrag_processesTouchWhenAlternateBouncerVisible()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
H A DLockIconViewControllerTest.java313 when(mPrimaryBouncerInteractor.isAnimatingAway()).thenReturn(true); in lockIconAccessibility_bouncerAnimatingAway()
337 when(mPrimaryBouncerInteractor.isAnimatingAway()).thenReturn(false); in lockIconAccessibility_bouncerNotAnimatingAway_viewVisible()
H A DLockIconViewControllerBaseTest.java98 protected @Mock PrimaryBouncerInteractor mPrimaryBouncerInteractor; field in LockIconViewControllerBaseTest
172 mPrimaryBouncerInteractor in setUp()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DLockIconViewController.java120 @NonNull private final PrimaryBouncerInteractor mPrimaryBouncerInteractor; field in LockIconViewController
215 mPrimaryBouncerInteractor = primaryBouncerInteractor; in LockIconViewController()
355 !mPrimaryBouncerInteractor.isAnimatingAway() && mView.isVisibleToUser(); in updateVisibility()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
H A DUdfpsController.java174 @NonNull private final PrimaryBouncerInteractor mPrimaryBouncerInteractor; field in UdfpsController
281 mPrimaryBouncerInteractor, mAlternateBouncerInteractor, mUdfpsUtils, in showUdfpsOverlay()
893 mPrimaryBouncerInteractor = primaryBouncerInteractor; in UdfpsController()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationStackScrollLayoutController.java184 private final PrimaryBouncerInteractor mPrimaryBouncerInteractor; field in NotificationStackScrollLayoutController
697 mPrimaryBouncerInteractor = primaryBouncerInteractor; in NotificationStackScrollLayoutController()
1285 return mPrimaryBouncerInteractor.isBouncerShowing(); in isBouncerShowing()