Home
last modified time | relevance | path

Searched refs:mKeyguardBypassController (Results 1 – 25 of 27) sorted by relevance

12

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DBiometricsUnlockControllerTest.java91 private KeyguardBypassController mKeyguardBypassController; field in BiometricsUnlockControllerTest
113 when(mKeyguardBypassController.onBiometricAuthenticated(any(), anyBoolean())) in setUp()
116 when(mKeyguardBypassController.canPlaySubtleWindowAnimations()).thenReturn(true); in setUp()
123 mUpdateMonitor, res.getResources(), mKeyguardBypassController, mDozeParameters, in setUp()
220 when(mKeyguardBypassController.getBypassEnabled()).thenReturn(true); in onBiometricAuthenticated_whenFace_andBypass_dismissKeyguard()
238 when(mKeyguardBypassController.getBypassEnabled()).thenReturn(false); in onBiometricAuthenticated_whenFace_andNonBypassAndUdfps_dismissKeyguard()
258 when(mKeyguardBypassController.getBypassEnabled()).thenReturn(true); in onBiometricAuthenticated_whenFace_andBypass_encrypted_showBouncer()
312 reset(mKeyguardBypassController); in onBiometricAuthenticated_whenBypassOnBouncer_dismissBouncer()
314 when(mKeyguardBypassController.getBypassEnabled()).thenReturn(true); in onBiometricAuthenticated_whenBypassOnBouncer_dismissBouncer()
315 when(mKeyguardBypassController.onBiometricAuthenticated(any(), anyBoolean())) in onBiometricAuthenticated_whenBypassOnBouncer_dismissBouncer()
[all …]
DNotificationIconAreaControllerTest.java58 KeyguardBypassController mKeyguardBypassController; field in NotificationIconAreaControllerTest
85 mKeyguardBypassController, in setup()
DKeyguardBouncerTest.java89 private KeyguardBypassController mKeyguardBypassController; field in KeyguardBouncerTest
133 mKeyguardBypassController, mHandler, mKeyguardSecurityModel, in setup()
413 when(mKeyguardBypassController.getBypassEnabled()).thenReturn(true); in testShow_delaysIfFaceAuthIsRunning_unlessBypass()
DNotificationShadeWindowControllerImplTest.java71 @Mock private KeyguardBypassController mKeyguardBypassController; field in NotificationShadeWindowControllerImplTest
90 mConfigurationController, mKeyguardViewMediator, mKeyguardBypassController, in setUp()
DNotificationPanelViewTest.java180 private KeyguardBypassController mKeyguardBypassController; field in NotificationPanelViewTest
372 mKeyguardBypassController, in setup()
379 mKeyguardBypassController, mHeadsUpManager, in setup()
409 coordinator, expansionHandler, mDynamicPrivacyController, mKeyguardBypassController, in setup()
519 when(mKeyguardBypassController.getBypassEnabled()).thenReturn(true); in testKeyguardStatusBarVisibility_hiddenForBypass()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationShelfController.java39 private final KeyguardBypassController mKeyguardBypassController; field in NotificationShelfController
51 mKeyguardBypassController = keyguardBypassController; in NotificationShelfController()
82 && !(mAmbientState.isOnKeyguard() && mKeyguardBypassController.getBypassEnabled()); in canModifyColorOfNotifications()
DKeyguardIndicationController.java125 private final KeyguardBypassController mKeyguardBypassController; field in KeyguardIndicationController
197 mKeyguardBypassController = keyguardBypassController; in KeyguardIndicationController()
828 if (mKeyguardBypassController.getUserHasDeviceEntryIntent()) { in showTryFingerprintMsg()
1037 && !mKeyguardBypassController.canBypass()) { in onBiometricAuthenticated()
DNotificationMediaManager.java104 private final KeyguardBypassController mKeyguardBypassController; field in NotificationMediaManager
193 mKeyguardBypassController = keyguardBypassController; in NotificationMediaManager()
650 if (mediaMetadata != null && !mKeyguardBypassController.getBypassEnabled()) { in updateMediaMetaData()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DBiometricUnlockController.java147 private final KeyguardBypassController mKeyguardBypassController; field in BiometricUnlockController
278 mKeyguardBypassController = keyguardBypassController; in BiometricUnlockController()
279 mKeyguardBypassController.setUnlockController(this); in BiometricUnlockController()
365 || mKeyguardBypassController.onBiometricAuthenticated( in onBiometricAuthenticated()
567 boolean bypass = mKeyguardBypassController.getBypassEnabled() in calculateModeForPassiveAuth()
568 || mKeyguardBypassController.getUserHasDeviceEntryIntent(); in calculateModeForPassiveAuth()
596 || mKeyguardBypassController.getAltBouncerShowing()) && unlockingAllowed) { in calculateModeForPassiveAuth()
597 if (bypass && mKeyguardBypassController.canPlaySubtleWindowAnimations()) { in calculateModeForPassiveAuth()
DKeyguardBouncer.java84 private final KeyguardBypassController mKeyguardBypassController; field in KeyguardBouncer
125 mKeyguardBypassController = keyguardBypassController; in KeyguardBouncer()
190 && !mKeyguardBypassController.getBypassEnabled()) { in show()
633 private final KeyguardBypassController mKeyguardBypassController; field in KeyguardBouncer.Factory
652 mKeyguardBypassController = keyguardBypassController; in Factory()
663 mKeyguardBypassController, mHandler, mKeyguardSecurityModel, in create()
DNotificationPanelViewController.java299 mFirstBypassAttempt = mKeyguardBypassController.getBypassEnabled();
309 private final KeyguardBypassController mKeyguardBypassController; field in NotificationPanelViewController
791 mKeyguardBypassController = bypassController; in NotificationPanelViewController()
793 mFirstBypassAttempt = mKeyguardBypassController.getBypassEnabled(); in NotificationPanelViewController()
904 if (mKeyguardBypassController.getBypassEnabled()) { in onFinishInflate()
1190 if (mKeyguardShowing && !mKeyguardBypassController.getBypassEnabled()) { in updateMaxDisplayedNotifications()
1291 boolean bypassEnabled = mKeyguardBypassController.getBypassEnabled(); in updateClockAppearance()
2092 mKeyguardBypassController.setQSExpanded(expanded); in setQsExpanded()
2299 if (mKeyguardBypassController.getBypassEnabled()) { in setQSClippingBounds()
2512 if (!mKeyguardBypassController.getBypassEnabled()) { in getKeyguardNotificationStaticPadding()
[all …]
DNotificationShadeWindowControllerImpl.java93 private final KeyguardBypassController mKeyguardBypassController; field in NotificationShadeWindowControllerImpl
131 mKeyguardBypassController = keyguardBypassController; in NotificationShadeWindowControllerImpl()
311 boolean bypassOnKeyguard = mKeyguardBypassController.getBypassEnabled() in applyKeyguardFlags()
DStatusBar.java411 private final KeyguardBypassController mKeyguardBypassController; field in StatusBar
821 mKeyguardBypassController = keyguardBypassController; in StatusBar()
954 mKeyguardUpdateMonitor.setKeyguardBypassController(mKeyguardBypassController); in start()
1179 mStatusBarStateController, mKeyguardBypassController, in makeStatusBarView()
1636 mStackScroller, mKeyguardBypassController); in startKeyguard()
1943 boolean bypassKeyguard = mKeyguardBypassController.getBypassEnabled() in onHeadsUpPinnedModeChanged()
4047 mKeyguardBypassController.setBouncerShowing(bouncerShowing);
4112 mKeyguardBypassController.onStartedGoingToSleep();
4129 if (!mKeyguardBypassController.getBypassEnabled()) {
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/
DKeyguardSliceProviderTest.java84 private KeyguardBypassController mKeyguardBypassController; field in KeyguardSliceProviderTest
145 when(mKeyguardBypassController.getBypassEnabled()).thenReturn(true); in onBindSlice_readsMedia_withBypass_notDozing()
266 mKeyguardBypassController = KeyguardSliceProviderTest.this.mKeyguardBypassController; in TestableKeyguardSliceProvider()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DExpandableNotificationRowController.java68 private final KeyguardBypassController mKeyguardBypassController; field in ExpandableNotificationRowController
121 mKeyguardBypassController = keyguardBypassController; in ExpandableNotificationRowController()
149 mKeyguardBypassController, in init()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/
DUdfpsControllerTest.java143 private KeyguardBypassController mKeyguardBypassController; field in UdfpsControllerTest
229 mKeyguardBypassController, in setUp()
301 verify(mKeyguardBypassController, never()).setUserHasDeviceEntryIntent(true); in onActionMove_dozing_setDeviceEntryIntent()
324 verify(mKeyguardBypassController).setUserHasDeviceEntryIntent(true); in onActionMove_onKeyguard_setDeviceEntryIntent()
347 verify(mKeyguardBypassController, never()).setUserHasDeviceEntryIntent(anyBoolean()); in onActionMove_onEnrollment_neverSetDeviceEntryIntent()
/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
DKeyguardUpdateMonitorTest.java154 private KeyguardBypassController mKeyguardBypassController; field in KeyguardUpdateMonitorTest
544 mKeyguardUpdateMonitor.setKeyguardBypassController(mKeyguardBypassController); in skipsAuthentication_whenEncryptedKeyguard()
566 when(mKeyguardBypassController.canBypass()).thenReturn(true); in testStrongAuthExceptOnBouncer()
567 mKeyguardUpdateMonitor.setKeyguardBypassController(mKeyguardBypassController); in testStrongAuthExceptOnBouncer()
593 mKeyguardUpdateMonitor.setKeyguardBypassController(mKeyguardBypassController); in testTriesToAuthenticate_whenTrustOnAgentKeyguard_ifBypass()
596 when(mKeyguardBypassController.canBypass()).thenReturn(true); in testTriesToAuthenticate_whenTrustOnAgentKeyguard_ifBypass()
984 when(mKeyguardBypassController.canBypass()).thenReturn(true); in testShouldNotUpdateBiometricListeningStateOnStatusBarStateChange()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
DKeyguardSliceProvider.java141 public KeyguardBypassController mKeyguardBypassController; field in KeyguardSliceProvider
224 boolean keepWhenAwake = mKeyguardBypassController != null in needsMediaLocked()
225 && mKeyguardBypassController.getBypassEnabled() && mDozeParameters.getAlwaysOn(); in needsMediaLocked()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardUpdateMonitor.java314 private KeyguardBypassController mKeyguardBypassController; field in KeyguardUpdateMonitor
1483 if (mKeyguardBypassController != null) {
1484 mKeyguardBypassController.setUserHasDeviceEntryIntent(false);
1494 if (mKeyguardBypassController != null) {
1495 mKeyguardBypassController.setUserHasDeviceEntryIntent(false);
1507 if (mKeyguardBypassController != null) {
1508 mKeyguardBypassController.setUserHasDeviceEntryIntent(false);
2320 final boolean canBypass = mKeyguardBypassController != null in shouldListenForFace()
2321 && mKeyguardBypassController.canBypass(); in shouldListenForFace()
2475 final boolean isBypassEnabled = mKeyguardBypassController != null in startListeningForFace()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
DUdfpsController.java126 @NonNull private final KeyguardBypassController mKeyguardBypassController; field in UdfpsController
562 mKeyguardBypassController = keyguardBypassController; in UdfpsController()
898 mKeyguardBypassController.setUserHasDeviceEntryIntent(true); in onFingerDown()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollerControllerTest.java107 @Mock private KeyguardBypassController mKeyguardBypassController; field in NotificationStackScrollerControllerTest
160 mKeyguardBypassController, in setUp()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DNotificationEntryManagerInflationTest.java136 @Mock private KeyguardBypassController mKeyguardBypassController; field in NotificationEntryManagerInflationTest
254 mKeyguardBypassController, in setUp() local
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
DKeyguardIndicationControllerTest.java151 private KeyguardBypassController mKeyguardBypassController; field in KeyguardIndicationControllerTest
223 mKeyguardBypassController); in createController()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/wmshell/
DNewNotifPipelineBubblesTest.java150 private KeyguardBypassController mKeyguardBypassController; field in NewNotifPipelineBubblesTest
226 mConfigurationController, mKeyguardViewMediator, mKeyguardBypassController, in setUp()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayoutController.java170 private final KeyguardBypassController mKeyguardBypassController; field in NotificationStackScrollLayoutController
630 mKeyguardBypassController = keyguardBypassController; in NotificationStackScrollLayoutController()
711 mView.initView(mView.getContext(), mKeyguardBypassController::getBypassEnabled, in attach()

12