/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ |
H A D | BiometricsUnlockControllerTest.java | 142 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 D | DozeServiceHostTest.java | 90 @Mock private BiometricUnlockController mBiometricUnlockController; field in DozeServiceHostTest 98 mBatteryController, mScrimController, () -> mBiometricUnlockController, in setup()
|
H A D | KeyguardStatusBarViewControllerTest.java | 85 private BiometricUnlockController mBiometricUnlockController; field in KeyguardStatusBarViewControllerTest 122 mBiometricUnlockController, in setup()
|
H A D | StatusBarTest.java | 197 @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 D | LatencyTester.java | 46 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 D | DozeWallpaperState.java | 45 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 D | StatusBarKeyguardViewManager.java | 176 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 D | LightBarController.java | 57 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 D | KeyguardStatusBarViewController.java | 92 private final BiometricUnlockController mBiometricUnlockController; field in KeyguardStatusBarViewController 173 && !mBiometricUnlockController.isBiometricUnlock()) { 248 mBiometricUnlockController = biometricUnlockController; in KeyguardStatusBarViewController()
|
H A D | StatusBar.java | 450 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 D | DozeWallpaperStateTest.java | 49 @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 D | NotificationMediaManager.java | 123 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()
|