Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DStatusBarKeyguardViewManagerTest.java148 @Mock private PrimaryBouncerInteractor mPrimaryBouncerInteractor; field in StatusBarKeyguardViewManagerTest
217 mPrimaryBouncerInteractor, in setUp()
259 verify(mPrimaryBouncerInteractor).setDismissAction(eq(action), eq(cancelAction)); in dismissWithAction_AfterKeyguardGoneSetToFalse()
260 verify(mPrimaryBouncerInteractor).show(eq(true)); in dismissWithAction_AfterKeyguardGoneSetToFalse()
267 verify(mPrimaryBouncerInteractor, never()).show(anyBoolean()); in showBouncer_onlyWhenShowing()
276 verify(mPrimaryBouncerInteractor, never()).show(anyBoolean()); in showBouncer_notWhenBouncerAlreadyShowing()
282 verify(mPrimaryBouncerInteractor).show(eq(true)); in showBouncer_showsTheBouncer()
288 verify(mPrimaryBouncerInteractor, never()).setPanelExpansion(anyFloat()); in onPanelExpansionChanged_neverShowsDuringHintAnimation()
294 verify(mPrimaryBouncerInteractor, never()).setPanelExpansion(eq(0.5f)); in onPanelExpansionChanged_propagatesToBouncerOnlyIfShowing()
296 when(mPrimaryBouncerInteractor.isFullyShowing()).thenReturn(true); in onPanelExpansionChanged_propagatesToBouncerOnlyIfShowing()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBarKeyguardViewManager.java165 private final PrimaryBouncerInteractor mPrimaryBouncerInteractor; field in StatusBarKeyguardViewManager
416 mPrimaryBouncerInteractor = primaryBouncerInteractor; in StatusBarKeyguardViewManager()
518 mPrimaryBouncerInteractor.getKeyguardAuthenticatedBiometricsHandled(), in registerListeners()
661 mPrimaryBouncerInteractor.show(/* isScrimmed= */false); in onPanelExpansionChanged()
669 mPrimaryBouncerInteractor.setPanelExpansion(fraction); in onPanelExpansionChanged()
671 mPrimaryBouncerInteractor.setPanelExpansion(EXPANSION_HIDDEN); in onPanelExpansionChanged()
715 mPrimaryBouncerInteractor.show(/* isScrimmed= */ true); in showBouncerOrKeyguard()
761 mPrimaryBouncerInteractor.hide(); in hideBouncer()
783 mPrimaryBouncerInteractor.show(scrimmed); in showPrimaryBouncer()
859 mPrimaryBouncerInteractor.setDismissAction(mAfterKeyguardGoneAction, in dismissWithAction()
[all …]
DStatusBarTouchableRegionManager.java80 private final PrimaryBouncerInteractor mPrimaryBouncerInteractor; field in StatusBarTouchableRegionManager
142 mPrimaryBouncerInteractor = primaryBouncerInteractor; in StatusBarTouchableRegionManager()
286 || mPrimaryBouncerInteractor.isShowing().getValue() in shouldMakeEntireScreenTouchable()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/biometrics/
DUdfpsKeyguardViewLegacyControllerBaseTest.java74 protected @Mock PrimaryBouncerInteractor mPrimaryBouncerInteractor; field in UdfpsKeyguardViewLegacyControllerBaseTest
152 mPrimaryBouncerInteractor, in createUdfpsKeyguardViewController()
DUdfpsControllerTest.java217 private PrimaryBouncerInteractor mPrimaryBouncerInteractor; field in UdfpsControllerTest
360 mPrimaryBouncerInteractor, in initUdfpsController()
1349 when(mPrimaryBouncerInteractor.isInTransit()).thenReturn(true); in onTouch_doNotProcessTouchWhenPullingUpBouncer()
1375 when(mPrimaryBouncerInteractor.isInTransit()).thenReturn(false); in onTouch_qsDrag_processesTouchWhenAlternateBouncerVisible()
DUdfpsKeyguardViewLegacyControllerWithCoroutinesTest.kt75 mPrimaryBouncerInteractor = kosmos.primaryBouncerInteractor in createUdfpsKeyguardViewController()
/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/
DNotificationShadeWindowViewController.java111 private final PrimaryBouncerInteractor mPrimaryBouncerInteractor; field in NotificationShadeWindowViewController
223 mPrimaryBouncerInteractor = primaryBouncerInteractor; in NotificationShadeWindowViewController()
422 && mPrimaryBouncerInteractor.isBouncerShowing())) { in setupExpandedStatusBar()
488 bouncerShowing = mPrimaryBouncerInteractor.isBouncerShowing() in setupExpandedStatusBar()
/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
DLegacyLockIconViewControllerTest.java322 when(mPrimaryBouncerInteractor.isAnimatingAway()).thenReturn(true); in lockIconAccessibility_bouncerAnimatingAway()
346 when(mPrimaryBouncerInteractor.isAnimatingAway()).thenReturn(false); in lockIconAccessibility_bouncerNotAnimatingAway_viewVisible()
DLegacyLockIconViewControllerBaseTest.java102 protected @Mock PrimaryBouncerInteractor mPrimaryBouncerInteractor; field in LegacyLockIconViewControllerBaseTest
178 mPrimaryBouncerInteractor, in setUp()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardSecurityContainerController.java435 private final Lazy<PrimaryBouncerInteractor> mPrimaryBouncerInteractor; field in KeyguardSecurityContainerController
501 mPrimaryBouncerInteractor = primaryBouncerInteractor; in KeyguardSecurityContainerController()
584 mPrimaryBouncerInteractor.get().setLastShownPrimarySecurityScreen(securityMode); in showPrimarySecurityScreen()
917 mPrimaryBouncerInteractor.get() in showNextSecurityScreenOrFinish()
920 mPrimaryBouncerInteractor.get().notifyUserRequestedBouncerWhenAlreadyAuthenticated( in showNextSecurityScreenOrFinish()
DLegacyLockIconViewController.java129 @NonNull private final PrimaryBouncerInteractor mPrimaryBouncerInteractor; field in LegacyLockIconViewController
226 mPrimaryBouncerInteractor = primaryBouncerInteractor; in LegacyLockIconViewController()
408 !mPrimaryBouncerInteractor.isAnimatingAway() && mView.isVisibleToUser(); in updateVisibility()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayoutControllerTest.java149 @Mock private PrimaryBouncerInteractor mPrimaryBouncerInteractor; field in NotificationStackScrollLayoutControllerTest
309 when(mPrimaryBouncerInteractor.isBouncerShowing()).thenReturn(true); in testUpdateEmptyShadeView_bouncerShowing_hideEmptyView()
328 when(mPrimaryBouncerInteractor.isBouncerShowing()).thenReturn(false); in testUpdateEmptyShadeView_bouncerNotShowing_showEmptyView()
993 mPrimaryBouncerInteractor, in initController()
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
DUdfpsController.java172 @NonNull private final PrimaryBouncerInteractor mPrimaryBouncerInteractor; field in UdfpsController
299 mPrimaryBouncerInteractor, in showUdfpsOverlay()
580 || mPrimaryBouncerInteractor.isInTransit()) { in onTouch()
772 mPrimaryBouncerInteractor = primaryBouncerInteractor; in UdfpsController()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayoutController.java196 private final PrimaryBouncerInteractor mPrimaryBouncerInteractor; field in NotificationStackScrollLayoutController
771 mPrimaryBouncerInteractor = primaryBouncerInteractor; in NotificationStackScrollLayoutController()
1435 && !mPrimaryBouncerInteractor.isBouncerShowing(); in updateShowEmptyShadeView()