Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
H A DBiometricsUnlockControllerTest.java175 when(mUpdateMonitor.isUnlockingWithBiometricAllowed(true /* isStrongBiometric */)) in onBiometricAuthenticated_fingerprintAndBiometricsDisallowed_showPrimaryBouncer()
187 when(mUpdateMonitor.isUnlockingWithBiometricAllowed(false /* isStrongBiometric */)) in onBiometricAuthenticated_fingerprint_nonStrongBioDisallowed_showPrimaryBouncer()
203 when(mUpdateMonitor.isUnlockingWithBiometricAllowed(anyBoolean())).thenReturn(true); in onBiometricAuthenticated_whenFingerprintAndNotInteractive_wakeAndUnlock()
221 when(mUpdateMonitor.isUnlockingWithBiometricAllowed(anyBoolean())).thenReturn(true); in onBiometricAuthenticated_whenDeviceIsAlreadyUnlocked_wakeAndUnlock()
235 when(mUpdateMonitor.isUnlockingWithBiometricAllowed(anyBoolean())).thenReturn(true); in onBiometricAuthenticated_whenFingerprint_notifyKeyguardAuthenticated()
249 when(mUpdateMonitor.isUnlockingWithBiometricAllowed(anyBoolean())).thenReturn(true); in onBiometricAuthenticated_whenFingerprintOnBouncer_dismissBouncer()
263 when(mUpdateMonitor.isUnlockingWithBiometricAllowed(anyBoolean())).thenReturn(true); in onBiometricAuthenticated_whenFace_dontDismissKeyguard()
279 when(mUpdateMonitor.isUnlockingWithBiometricAllowed(anyBoolean())).thenReturn(true); in onBiometricAuthenticated_whenFace_andBypass_dismissKeyguard()
296 when(mUpdateMonitor.isUnlockingWithBiometricAllowed(anyBoolean())).thenReturn(true); in onBiometricAuthenticated_whenFace_andNonBypassAndUdfps_dismissKeyguard()
357 when(mUpdateMonitor.isUnlockingWithBiometricAllowed(anyBoolean())).thenReturn(true); in onBiometricAuthenticated_whenFaceOnBouncer_dismissBouncer()
[all …]
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/domain/interactor/
H A DBiometricMessageInteractorTest.kt139 whenever(keyguardUpdateMonitor.isUnlockingWithBiometricAllowed(anyBoolean()))
164 whenever(keyguardUpdateMonitor.isUnlockingWithBiometricAllowed(anyBoolean()))
185 whenever(keyguardUpdateMonitor.isUnlockingWithBiometricAllowed(anyBoolean()))
218 whenever(keyguardUpdateMonitor.isUnlockingWithBiometricAllowed(anyBoolean()))
251 whenever(keyguardUpdateMonitor.isUnlockingWithBiometricAllowed(anyBoolean()))
H A DOccludingAppDeviceEntryInteractorTest.kt339 whenever(keyguardUpdateMonitor.isUnlockingWithBiometricAllowed(anyBoolean()))
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/
H A DAuthRippleControllerTest.kt145 `when`(keyguardUpdateMonitor.isUnlockingWithBiometricAllowed(
164 `when`(keyguardUpdateMonitor.isUnlockingWithBiometricAllowed(
189 `when`(keyguardUpdateMonitor.isUnlockingWithBiometricAllowed(
253 `when`(keyguardUpdateMonitor.isUnlockingWithBiometricAllowed(
275 `when`(keyguardUpdateMonitor.isUnlockingWithBiometricAllowed(
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
H A DKeyguardUpdateMonitorTest.java331 .isUnlockingWithBiometricAllowed(anyBoolean() /* isClass3Biometric */)) in setup()
910 Assert.assertTrue(mKeyguardUpdateMonitor.isUnlockingWithBiometricAllowed( in testUnlockingWithFaceAllowed_strongAuthTrackerUnlockingWithBiometricAllowed()
912 Assert.assertTrue(mKeyguardUpdateMonitor.isUnlockingWithBiometricAllowed( in testUnlockingWithFaceAllowed_strongAuthTrackerUnlockingWithBiometricAllowed()
922 Assert.assertFalse(mKeyguardUpdateMonitor.isUnlockingWithBiometricAllowed( in testUnlockingWithFaceAllowed_strongAuthTrackerUnlockingWithBiometricNotAllowed()
938 Assert.assertFalse(mKeyguardUpdateMonitor.isUnlockingWithBiometricAllowed( in class3FingerprintLockOut_lockOutClass1Face()
954 Assert.assertFalse(mKeyguardUpdateMonitor.isUnlockingWithBiometricAllowed( in class3FingerprintLockOut_lockOutClass3Face()
970 Assert.assertFalse(mKeyguardUpdateMonitor.isUnlockingWithBiometricAllowed( in class3FaceLockOut_lockOutClass3Fingerprint()
986 Assert.assertTrue(mKeyguardUpdateMonitor.isUnlockingWithBiometricAllowed( in class1FaceLockOut_doesNotLockOutClass3Fingerprint()
996 Assert.assertFalse(mKeyguardUpdateMonitor.isUnlockingWithBiometricAllowed( in testUnlockingWithFpAllowed_strongAuthTrackerUnlockingWithBiometricNotAllowed()
1009 Assert.assertFalse(mKeyguardUpdateMonitor.isUnlockingWithBiometricAllowed( in testUnlockingWithFpAllowed_fingerprintLockout()
[all …]
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/util/
H A DIndicationHelperTest.kt165 whenever(keyguardUpdateMonitor.isUnlockingWithBiometricAllowed(anyBoolean()))
170 whenever(keyguardUpdateMonitor.isUnlockingWithBiometricAllowed(anyBoolean()))
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/util/
H A DIndicationHelper.kt63 return !keyguardUpdateMonitor.isUnlockingWithBiometricAllowed(true /* isStrongBiometric */)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/domain/interactor/
H A DBiometricMessageInteractor.kt124 return !keyguardUpdateMonitor.isUnlockingWithBiometricAllowed(true /* isStrongBiometric */)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DKeyguardUpdateMonitor.java1587 && isUnlockingWithBiometricAllowed(fingerprint.mIsStrongBiometric); in getUserUnlockedWithBiometric()
1598 && isUnlockingWithBiometricAllowed(face.mIsStrongBiometric); in getUserUnlockedWithFace()
1612 && isUnlockingWithBiometricAllowed(face.mIsStrongBiometric); in getUserUnlockedWithBiometricAndIsBypassing()
1674 return isUnlockingWithBiometricAllowed(true); in isUnlockingWithTrustAgentAllowed()
1677 public boolean isUnlockingWithBiometricAllowed(boolean isStrongBiometric) { in isUnlockingWithBiometricAllowed() method in KeyguardUpdateMonitor
1693 return isUnlockingWithBiometricAllowed(FINGERPRINT); in isUnlockingWithFingerprintAllowed()
1699 public boolean isUnlockingWithBiometricAllowed( in isUnlockingWithBiometricAllowed() method in KeyguardUpdateMonitor
1703 return isUnlockingWithBiometricAllowed(isFingerprintClass3()); in isUnlockingWithBiometricAllowed()
1705 return isUnlockingWithBiometricAllowed(isFaceClass3()); in isUnlockingWithBiometricAllowed()
3197 final boolean faceAuthAllowed = isUnlockingWithBiometricAllowed(FACE); in shouldListenForFace()
[all …]
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DBiometricUnlockController.java542 .isUnlockingWithBiometricAllowed(mPendingAuthenticated.isStrongBiometric) in hasPendingAuthentication()
562 mUpdateMonitor.isUnlockingWithBiometricAllowed(isStrongBiometric); in calculateModeForFingerprint()
622 mUpdateMonitor.isUnlockingWithBiometricAllowed(isStrongBiometric); in calculateModeForPassiveAuth()
H A DKeyguardStatusBarViewController.java191 && mKeyguardUpdateMonitor.isUnlockingWithBiometricAllowed(
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/bouncer/domain/interactor/
H A DPrimaryBouncerInteractorTest.kt408 whenever(keyguardUpdateMonitor.isUnlockingWithBiometricAllowed(BiometricSourceType.FACE))
434 whenever(keyguardUpdateMonitor.isUnlockingWithBiometricAllowed(BiometricSourceType.FACE))
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/domain/interactor/
H A DPrimaryBouncerInteractor.kt396 keyguardUpdateMonitor.isUnlockingWithBiometricAllowed(BiometricSourceType.FACE) &&
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyguardStateControllerImpl.java457 if (mKeyguardUpdateMonitor.isUnlockingWithBiometricAllowed(isStrongBiometric)) { in onBiometricAuthenticated()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
H A DAuthRippleController.kt149 .isUnlockingWithBiometricAllowed(biometricSourceType)
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
H A DKeyguardIndicationControllerBaseTest.java206 when(mKeyguardUpdateMonitor.isUnlockingWithBiometricAllowed(anyBoolean())).thenReturn(true); in setUp()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DKeyguardIndicationController.java1392 return !mKeyguardUpdateMonitor.isUnlockingWithBiometricAllowed( in isPrimaryAuthRequired()