Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DBiometricsUnlockControllerTest.java106 when(mUpdateMonitor.isUnlockingWithBiometricAllowed()).thenReturn(true); in onBiometricAuthenticated_whenFingerprintAndNotInteractive_wakeAndUnlock()
116 when(mUpdateMonitor.isUnlockingWithBiometricAllowed()).thenReturn(true); in onBiometricAuthenticated_whenFingerprint_dismissKeyguard()
126 when(mUpdateMonitor.isUnlockingWithBiometricAllowed()).thenReturn(true); in onBiometricAuthenticated_whenFingerprintOnBouncer_dismissBouncer()
136 when(mUpdateMonitor.isUnlockingWithBiometricAllowed()).thenReturn(true); in onBiometricAuthenticated_whenFace_dontDismissKeyguard()
149 when(mUpdateMonitor.isUnlockingWithBiometricAllowed()).thenReturn(true); in onBiometricAuthenticated_whenFace_dismissingKeyguard()
158 when(mUpdateMonitor.isUnlockingWithBiometricAllowed()).thenReturn(true); in onBiometricAuthenticated_whenFaceOnBouncer_dismissBouncer()
170 when(mUpdateMonitor.isUnlockingWithBiometricAllowed()).thenReturn(true); in onBiometricAuthenticated_whenFaceAndPulsing_dontDismissKeyguard()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DUnlockMethodCache.java163 if (!mKeyguardUpdateMonitor.isUnlockingWithBiometricAllowed()) {
DBiometricUnlockController.java385 && mUpdateMonitor.isUnlockingWithBiometricAllowed() in hasPendingAuthentication()
394 boolean unlockingAllowed = mUpdateMonitor.isUnlockingWithBiometricAllowed(); in calculateMode()
DLockIcon.java300 boolean unlockingAllowed = mKeyguardUpdateMonitor.isUnlockingWithBiometricAllowed(); in onInitializeAccessibilityNodeInfo()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DKeyguardIndicationController.java636 if (!updateMonitor.isUnlockingWithBiometricAllowed()) { in onBiometricHelp()
686 return ((!updateMonitor.isUnlockingWithBiometricAllowed() in shouldSuppressFingerprintError()
692 return ((!updateMonitor.isUnlockingWithBiometricAllowed() in shouldSuppressFaceError()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardUpdateMonitor.java904 return fingerprintOrFace && isUnlockingWithBiometricAllowed(); in getUserUnlockedWithBiometric()
911 public boolean isUnlockingWithBiometricAllowed() { in isUnlockingWithBiometricAllowed() method in KeyguardUpdateMonitor
912 return mStrongAuthTracker.isUnlockingWithBiometricAllowed(); in isUnlockingWithBiometricAllowed()
1316 public boolean isUnlockingWithBiometricAllowed() { in isUnlockingWithBiometricAllowed() method in KeyguardUpdateMonitor.StrongAuthTracker
2528 pw.println(" allowed=" + isUnlockingWithBiometricAllowed()); in dump()
2543 pw.println(" allowed=" + isUnlockingWithBiometricAllowed()); in dump()
/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
DKeyguardUpdateMonitorTest.java110 when(mStrongAuthTracker.isUnlockingWithBiometricAllowed()).thenReturn(true); in setup()