Home
last modified time | relevance | path

Searched refs:canBypass (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DKeyguardBypassController.kt104 val can = canBypass() in onBiometricAuthenticated()
125 fun canBypass(): Boolean { in canBypass() method
160 pw.print(" canBypass: "); pw.println(canBypass()) in dump()
/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
DKeyguardUpdateMonitorTest.java364 when(mKeyguardBypassController.canBypass()).thenReturn(true); in testStrongAuthExceptOnBouncer()
394 when(mKeyguardBypassController.canBypass()).thenReturn(true); in testTriesToAuthenticate_whenTrustOnAgentKeyguard_ifBypass()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardUpdateMonitor.java1746 boolean canBypass = mKeyguardBypassController != null in shouldListenForFace()
1747 && mKeyguardBypassController.canBypass(); in shouldListenForFace()
1751 boolean becauseCannotSkipBouncer = !getUserCanSkipBouncer(user) || canBypass; in shouldListenForFace()
1755 boolean strongAuthAllowsScanning = (!isEncryptedOrTimedOut || canBypass && !mBouncer) in shouldListenForFace()