Home
last modified time | relevance | path

Searched refs:mBiometricUnlockController (Results 1 – 12 of 12) sorted by relevance

/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
H A DBiometricsUnlockControllerTest.java142 assertThat(mBiometricUnlockController.getMode()) in onBiometricAuthenticated_whenFingerprintAndBiometricsDisallowed_showBouncer()
155 assertThat(mBiometricUnlockController.getMode()) in onBiometricAuthenticated_whenFingerprint_nonStrongBioDisallowed_showBouncer()
174 assertThat(mBiometricUnlockController.getMode()) in onBiometricAuthenticated_whenFingerprintAndNotInteractive_wakeAndUnlock()
188 assertThat(mBiometricUnlockController.getMode()) in onBiometricAuthenticated_whenFingerprint_notifyKeyguardAuthenticated()
202 assertThat(mBiometricUnlockController.getMode()) in onBiometricAuthenticated_whenFingerprintOnBouncer_dismissBouncer()
217 assertThat(mBiometricUnlockController.getMode()) in onBiometricAuthenticated_whenFace_dontDismissKeyguard()
235 assertThat(mBiometricUnlockController.getMode()) in onBiometricAuthenticated_whenFace_andBypass_dismissKeyguard()
254 assertThat(mBiometricUnlockController.getMode()) in onBiometricAuthenticated_whenFace_andNonBypassAndUdfps_dismissKeyguard()
275 assertThat(mBiometricUnlockController.getMode()) in onBiometricAuthenticated_whenFace_andBypass_encrypted_showBouncer()
285 mBiometricUnlockController.startWakeAndUnlock( in onBiometricAuthenticated_onLockScreen()
[all …]
H A DDozeServiceHostTest.java90 @Mock private BiometricUnlockController mBiometricUnlockController; field in DozeServiceHostTest
98 mBatteryController, mScrimController, () -> mBiometricUnlockController, in setup()
H A DKeyguardStatusBarViewControllerTest.java85 private BiometricUnlockController mBiometricUnlockController; field in KeyguardStatusBarViewControllerTest
122 mBiometricUnlockController, in setup()
H A DStatusBarTest.java197 @Mock private BiometricUnlockController mBiometricUnlockController; field in StatusBarTest
349 when(mBiometricUnlockControllerLazy.get()).thenReturn(mBiometricUnlockController); in setup()
789 when(mBiometricUnlockController.getMode()) in testFingerprintUnlock_UpdatesScrims()
813 when(mBiometricUnlockController.isBiometricUnlock()).thenReturn(true); in testSetExpansionAffectsAlpha_onlyWhenHidingKeyguard()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DLatencyTester.java46 private final BiometricUnlockController mBiometricUnlockController; field in LatencyTester
54 mBiometricUnlockController = biometricUnlockController; in LatencyTester()
81 mBiometricUnlockController.onBiometricAcquired(type); in fakeWakeAndUnlock()
82 mBiometricUnlockController.onBiometricAuthenticated( in fakeWakeAndUnlock()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
H A DDozeWallpaperState.java45 private final BiometricUnlockController mBiometricUnlockController; field in DozeWallpaperState
54 mBiometricUnlockController = biometricUnlockController; in DozeWallpaperState()
83 animated = (fastDisplay && !mBiometricUnlockController.unlockedByWakeAndUnlock()) in transitionTo()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarKeyguardViewManager.java176 private BiometricUnlockController mBiometricUnlockController; field in StatusBarKeyguardViewManager
277 mBiometricUnlockController = biometricUnlockController; in registerStatusBar()
514 int mode = mBiometricUnlockController.getMode(); in isWakeAndUnlocking()
775 mBiometricUnlockController.startKeyguardFadingAway(); in hide()
815 mBiometricUnlockController.finishKeyguardFadingAway(); in hide()
827 return (mBiometricUnlockController.getMode() == MODE_UNLOCK_FADING in needsBypassFading()
829 || mBiometricUnlockController.getMode() == MODE_WAKE_AND_UNLOCK) in needsBypassFading()
857 mBiometricUnlockController.finishKeyguardFadingAway(); in onKeyguardFadedAway()
864 if (mBiometricUnlockController.getMode() == MODE_WAKE_AND_UNLOCK in wakeAndUnlockDejank()
1026 mLastBiometricMode = mBiometricUnlockController.getMode(); in updateStates()
[all …]
H A DLightBarController.java57 private BiometricUnlockController mBiometricUnlockController; field in LightBarController
116 mBiometricUnlockController = biometricUnlockController; in setBiometricUnlockController()
207 if (mBiometricUnlockController == null) { in animateChange()
210 int unlockMode = mBiometricUnlockController.getMode(); in animateChange()
H A DKeyguardStatusBarViewController.java92 private final BiometricUnlockController mBiometricUnlockController; field in KeyguardStatusBarViewController
173 && !mBiometricUnlockController.isBiometricUnlock()) {
248 mBiometricUnlockController = biometricUnlockController; in KeyguardStatusBarViewController()
H A DStatusBar.java450 private BiometricUnlockController mBiometricUnlockController; field in StatusBar
1565 mBiometricUnlockController = mBiometricUnlockControllerLazy.get(); in startKeyguard()
1566 mBiometricUnlockController.setBiometricModeListener( in startKeyguard()
1598 mBiometricUnlockController, in startKeyguard()
1608 mMediaManager.setBiometricUnlockController(mBiometricUnlockController); in startKeyguard()
2150 return mBiometricUnlockController; in getBiometricUnlockController()
2709 mBiometricUnlockController.startWakeAndUnlock( in dismissKeyguardThenExecute()
2931 boolean wakeAndUnlocking = mBiometricUnlockController.getMode() in updateIsKeyguard()
3194 boolean wakeAndUnlock = mBiometricUnlockController.getMode() in updateDozingState()
3728 boolean unlocking = mBiometricUnlockController.isWakeAndUnlock() in updateScrimController()
[all …]
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/doze/
H A DDozeWallpaperStateTest.java49 @Mock BiometricUnlockController mBiometricUnlockController; field in DozeWallpaperStateTest
55 mDozeWallpaperState = new DozeWallpaperState(mIWallpaperManager, mBiometricUnlockController, in setUp()
112 when(mBiometricUnlockController.unlockedByWakeAndUnlock()).thenReturn(true); in testDoesNotAnimate_whenWakeAndUnlock()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationMediaManager.java123 private BiometricUnlockController mBiometricUnlockController; field in NotificationMediaManager
599 boolean wakeAndUnlock = mBiometricUnlockController != null in updateMediaMetaData()
600 && mBiometricUnlockController.isWakeAndUnlock(); in updateMediaMetaData()
676 && mBiometricUnlockController != null && mBiometricUnlockController.getMode() in finishUpdateMediaMetaData()
740 if (((mBiometricUnlockController != null && mBiometricUnlockController.getMode() in finishUpdateMediaMetaData()
790 mBiometricUnlockController = biometricUnlockController; in setBiometricUnlockController()