Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DKeyguardBypassController.kt154 val can = canBypass() in onBiometricAuthenticated()
177 fun canBypass(): Boolean { in canBypass() method in com.android.systemui.statusbar.phone.KeyguardBypassController
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/
DAuthRippleControllerTest.kt152 `when`(bypassController.canBypass()).thenReturn(true) in testFaceTriggerBypassEnabled_Ripple()
173 `when`(bypassController.canBypass()).thenReturn(false) in testFaceTriggerNonBypass_NoRipple()
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
DAuthRippleController.kt94 if (!bypassController.canBypass()) { in showRipple()
/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
DKeyguardUpdateMonitorTest.java566 when(mKeyguardBypassController.canBypass()).thenReturn(true); in testStrongAuthExceptOnBouncer()
596 when(mKeyguardBypassController.canBypass()).thenReturn(true); in testTriesToAuthenticate_whenTrustOnAgentKeyguard_ifBypass()
984 when(mKeyguardBypassController.canBypass()).thenReturn(true); in testShouldNotUpdateBiometricListeningStateOnStatusBarStateChange()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardUpdateMonitor.java2320 final boolean canBypass = mKeyguardBypassController != null in shouldListenForFace()
2321 && mKeyguardBypassController.canBypass(); in shouldListenForFace()
2325 final boolean becauseCannotSkipBouncer = !getUserCanSkipBouncer(user) || canBypass; in shouldListenForFace()
2329 boolean strongAuthAllowsScanning = (!isEncryptedOrTimedOut || canBypass && !mBouncer); in shouldListenForFace()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DKeyguardIndicationController.java1037 && !mKeyguardBypassController.canBypass()) { in onBiometricAuthenticated()