Home
last modified time | relevance | path

Searched refs:isUnlockingWithBiometricAllowed (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DBiometricsUnlockControllerTest.java111 when(mUpdateMonitor.isUnlockingWithBiometricAllowed()).thenReturn(true); in onBiometricAuthenticated_whenFingerprintAndNotInteractive_wakeAndUnlock()
121 when(mUpdateMonitor.isUnlockingWithBiometricAllowed()).thenReturn(true); in onBiometricAuthenticated_whenFingerprint_dismissKeyguard()
131 when(mUpdateMonitor.isUnlockingWithBiometricAllowed()).thenReturn(true); in onBiometricAuthenticated_whenFingerprintOnBouncer_dismissBouncer()
141 when(mUpdateMonitor.isUnlockingWithBiometricAllowed()).thenReturn(true); in onBiometricAuthenticated_whenFace_dontDismissKeyguard()
154 when(mUpdateMonitor.isUnlockingWithBiometricAllowed()).thenReturn(true); in onBiometricAuthenticated_whenFace_andBypass_dismissKeyguard()
168 when(mUpdateMonitor.isUnlockingWithBiometricAllowed()).thenReturn(false); in onBiometricAuthenticated_whenFace_andBypass_encrypted_showBouncer()
186 when(mUpdateMonitor.isUnlockingWithBiometricAllowed()).thenReturn(false); in onBiometricAuthenticated_whenFace_noBypass_encrypted_doNothing()
198 when(mUpdateMonitor.isUnlockingWithBiometricAllowed()).thenReturn(true); in onBiometricAuthenticated_whenFaceOnBouncer_dismissBouncer()
209 when(mUpdateMonitor.isUnlockingWithBiometricAllowed()).thenReturn(true); in onBiometricAuthenticated_whenBypassOnBouncer_dismissBouncer()
223 when(mUpdateMonitor.isUnlockingWithBiometricAllowed()).thenReturn(true); in onBiometricAuthenticated_whenBypassOnBouncer_respectsCanPlaySubtleAnim()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DBiometricUnlockController.java393 && mUpdateMonitor.isUnlockingWithBiometricAllowed() in hasPendingAuthentication()
411 boolean unlockingAllowed = mUpdateMonitor.isUnlockingWithBiometricAllowed(); in calculateModeForFingerprint()
441 boolean unlockingAllowed = mUpdateMonitor.isUnlockingWithBiometricAllowed(); in calculateModeForPassiveAuth()
DUnlockMethodCache.java181 if (!mKeyguardUpdateMonitor.isUnlockingWithBiometricAllowed()) {
DLockIcon.java387 boolean unlockingAllowed = mKeyguardUpdateMonitor.isUnlockingWithBiometricAllowed(); in onInitializeAccessibilityNodeInfo()
DNotificationPanelView.java177 if (mFirstBypassAttempt && mUpdateMonitor.isUnlockingWithBiometricAllowed()) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DKeyguardIndicationController.java687 if (!mKeyguardUpdateMonitor.isUnlockingWithBiometricAllowed()) { in onBiometricHelp()
747 return ((!updateMonitor.isUnlockingWithBiometricAllowed() in shouldSuppressFingerprintError()
753 return ((!updateMonitor.isUnlockingWithBiometricAllowed() in shouldSuppressFaceError()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardUpdateMonitor.java986 return fingerprintOrFace && isUnlockingWithBiometricAllowed(); in getUserUnlockedWithBiometric()
993 public boolean isUnlockingWithBiometricAllowed() { in isUnlockingWithBiometricAllowed() method in KeyguardUpdateMonitor
994 return mStrongAuthTracker.isUnlockingWithBiometricAllowed(); in isUnlockingWithBiometricAllowed()
1409 public boolean isUnlockingWithBiometricAllowed() { in isUnlockingWithBiometricAllowed() method in KeyguardUpdateMonitor.StrongAuthTracker
2689 pw.println(" allowed=" + isUnlockingWithBiometricAllowed()); in dump()
2704 pw.println(" allowed=" + isUnlockingWithBiometricAllowed()); in dump()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
DKeyguardIndicationControllerTest.java129 when(mKeyguardUpdateMonitor.isUnlockingWithBiometricAllowed()).thenReturn(true); in setUp()
/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
DKeyguardUpdateMonitorTest.java133 when(mStrongAuthTracker.isUnlockingWithBiometricAllowed()).thenReturn(true); in setup()