/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/biometrics/ |
H A D | BiometricServiceTest.java | 372 eq(TYPE_FINGERPRINT), in testAuthenticate_withoutEnrolled_returnsErrorNoBiometrics() 397 TYPE_FINGERPRINT, in testAuthenticate_picksStrongIfAvailable() 446 eq(TYPE_FINGERPRINT), in testAuthenticate_whenHalIsDead_returnsErrorHardwareUnavailable() 492 TYPE_FINGERPRINT, in testAuthenticateBothFpAndFace_shouldShowDefaultSubtitle() 774 eq(TYPE_FINGERPRINT), in testRejectFingerprint_whenAuthenticating_notifiesAndKeepsAuthenticating() 899 eq(TYPE_FINGERPRINT), in testErrorFromHal_whileAuthenticating_waitsForSysUIBeforeNotifyingClient() 911 eq(TYPE_FINGERPRINT), in testErrorFromHal_whileAuthenticating_waitsForSysUIBeforeNotifyingClient() 1021 TYPE_FINGERPRINT, in testMultiBiometricAuth_whenLockout() 1172 eq(TYPE_FINGERPRINT), in testLockout_whileAuthenticating_credentialAllowed() 1195 eq(TYPE_FINGERPRINT), in testLockout_whenAuthenticating_credentialNotAllowed() [all …]
|
H A D | InvalidationTrackerTest.java | 63 BiometricAuthenticator.TYPE_FINGERPRINT, Authenticators.BIOMETRIC_STRONG, in testCallbackReceived_whenAllStrongSensorsInvalidated() 69 BiometricAuthenticator.TYPE_FINGERPRINT, Authenticators.BIOMETRIC_STRONG, in testCallbackReceived_whenAllStrongSensorsInvalidated()
|
H A D | AuthSessionTest.java | 20 import static android.hardware.biometrics.BiometricAuthenticator.TYPE_FINGERPRINT; 210 } else if (sensor.modality == TYPE_FINGERPRINT) { in testStartNewAuthSession() 312 .filter(s -> s.modality == TYPE_FINGERPRINT) in testMultiAuth_fingerprintSensorStartsAfterUINotifies() 644 TYPE_FINGERPRINT /* modality */, in setupFingerprint()
|
H A D | UtilsTest.java | 263 assertFalse(Utils.isConfirmationSupported(BiometricAuthenticator.TYPE_FINGERPRINT)); in testConfirmationSupported()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/ |
H A D | AuthBiometricFingerprintAndFaceViewTest.kt | 20 import android.hardware.biometrics.BiometricAuthenticator.TYPE_FINGERPRINT 77 biometricView.onAuthenticationSucceeded(TYPE_FINGERPRINT) 114 biometricView.onError(TYPE_FINGERPRINT, "that's a nope") 131 biometricView.onError(TYPE_FINGERPRINT, "that's a nope") 155 biometricView.onError(TYPE_FINGERPRINT, "that's a nope")
|
H A D | AuthBiometricFingerprintViewTest.kt | 80 biometricView.onAuthenticationSucceeded(BiometricAuthenticator.TYPE_FINGERPRINT) 91 biometricView.onAuthenticationSucceeded(BiometricAuthenticator.TYPE_FINGERPRINT) 134 biometricView.onAuthenticationSucceeded(BiometricAuthenticator.TYPE_FINGERPRINT) 193 biometricView.onAuthenticationSucceeded(BiometricAuthenticator.TYPE_FINGERPRINT) 221 biometricView.onHelp(BiometricAuthenticator.TYPE_FINGERPRINT, "")
|
H A D | AuthControllerTest.java | 19 import static android.hardware.biometrics.BiometricAuthenticator.TYPE_FINGERPRINT; 472 mAuthController.onBiometricAuthenticated(TYPE_FINGERPRINT); in testOnAuthenticationSucceededInvoked_whenSystemRequested() 473 verify(mDialog1).onAuthenticationSucceeded(eq(TYPE_FINGERPRINT)); in testOnAuthenticationSucceededInvoked_whenSystemRequested() 522 final int modality = BiometricAuthenticator.TYPE_FINGERPRINT; in testOnAuthenticationFailedInvoked_whenFingerprintAuthRejected()
|
/aosp14/frameworks/base/core/java/android/hardware/biometrics/ |
H A D | BiometricAuthenticator.java | 52 int TYPE_FINGERPRINT = 1 << 1; field 69 int TYPE_ANY_BIOMETRIC = TYPE_FINGERPRINT | TYPE_IRIS | TYPE_FACE; 74 TYPE_FINGERPRINT,
|
H A D | ParentalControlsUtilsInternal.java | 87 if (containsFlag(modality, BiometricAuthenticator.TYPE_FINGERPRINT) && dpmFpDisabled) { in parentConsentRequired()
|
H A D | BiometricPrompt.java | 558 case TYPE_FINGERPRINT:
|
/aosp14/frameworks/base/services/core/java/com/android/server/biometrics/sensors/fingerprint/ |
H A D | FingerprintServiceRegistry.java | 19 import static android.hardware.biometrics.BiometricAuthenticator.TYPE_FINGERPRINT; 59 service.registerAuthenticator(props.sensorId, TYPE_FINGERPRINT, strength, in registerService()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/ |
H A D | DozeScreenState.java | 19 import static android.hardware.biometrics.BiometricAuthenticator.TYPE_FINGERPRINT; 239 if (modality == TYPE_FINGERPRINT) { 246 if (modality == TYPE_FINGERPRINT) {
|
H A D | DozeSensors.java | 19 import static android.hardware.biometrics.BiometricAuthenticator.TYPE_FINGERPRINT; 862 if (modality == TYPE_FINGERPRINT) { 869 if (modality == TYPE_FINGERPRINT) {
|
/aosp14/frameworks/base/services/core/java/com/android/server/biometrics/ |
H A D | AuthService.java | 28 import static android.hardware.biometrics.BiometricAuthenticator.TYPE_FINGERPRINT; 457 case BiometricAuthenticator.TYPE_FINGERPRINT: in getButtonLabel() 508 case BiometricAuthenticator.TYPE_FINGERPRINT: in getPromptMessage() 576 case BiometricAuthenticator.TYPE_FINGERPRINT: in getSettingName() 591 if (biometricModality == BiometricAuthenticator.TYPE_FINGERPRINT) { in getSettingName() 686 modalities.add(String.valueOf(BiometricAuthenticator.TYPE_FINGERPRINT)); in generateRSdkCompatibleConfiguration() 721 case TYPE_FINGERPRINT: in registerAuthenticators()
|
H A D | AuthSession.java | 20 import static android.hardware.biometrics.BiometricAuthenticator.TYPE_FINGERPRINT; 382 startAllPreparedSensors(sensor -> sensor.modality != TYPE_FINGERPRINT); in startAllPreparedSensorsExceptFingerprint() 386 startAllPreparedSensors(sensor -> sensor.modality == TYPE_FINGERPRINT); in startAllPreparedFingerprintSensors() 945 if ((sensor.modality & BiometricAuthenticator.TYPE_FINGERPRINT) != 0) { in statsModality() 993 case BiometricAuthenticator.TYPE_FINGERPRINT: in getAcquiredMessageForSensor()
|
H A D | PreAuthInfo.java | 21 import static android.hardware.biometrics.BiometricAuthenticator.TYPE_FINGERPRINT; 261 case TYPE_FINGERPRINT: in mapModalityToDevicePolicyType()
|
H A D | BiometricService.java | 21 import static android.hardware.biometrics.BiometricAuthenticator.TYPE_FINGERPRINT; 1301 (eligible & TYPE_FINGERPRINT) == TYPE_FINGERPRINT;
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/shared/model/ |
H A D | BiometricModality.kt | 32 BiometricAuthenticator.TYPE_FINGERPRINT -> BiometricModality.Fingerprint
|
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/biometrics/sensors/fingerprint/ |
H A D | FingerprintServiceRegistryTest.java | 19 import static android.hardware.biometrics.BiometricAuthenticator.TYPE_FINGERPRINT; 106 mIdCaptor.capture(), eq(TYPE_FINGERPRINT), mStrengthCaptor.capture(), any()); in registersAllProviders()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/ |
H A D | LockIconViewControllerTest.java | 19 import static android.hardware.biometrics.BiometricAuthenticator.TYPE_FINGERPRINT; 95 mAuthControllerCallback.onAllAuthenticatorsRegistered(TYPE_FINGERPRINT); in testUpdateLockIconLocationOnAuthenticatorsRegistered()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/data/repository/ |
H A D | DeviceEntryFingerprintAuthRepositoryTest.kt | 19 import android.hardware.biometrics.BiometricAuthenticator.TYPE_FINGERPRINT 179 callback.value.onAllAuthenticatorsRegistered(TYPE_FINGERPRINT)
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
H A D | LockIconViewController.java | 19 import static android.hardware.biometrics.BiometricAuthenticator.TYPE_FINGERPRINT; 782 if (modality == TYPE_FINGERPRINT) { 789 if (modality == TYPE_FINGERPRINT) {
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/data/repository/ |
H A D | DeviceEntryFingerprintAuthRepository.kt | 88 if (modality == BiometricAuthenticator.TYPE_FINGERPRINT)
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/ |
H A D | AuthController.java | 20 import static android.hardware.biometrics.BiometricAuthenticator.TYPE_FINGERPRINT; 329 TYPE_FINGERPRINT, userId, sensorId, hasEnrollments)); in handleAllFingerprintAuthenticatorsRegistered() 335 cb.onAllAuthenticatorsRegistered(TYPE_FINGERPRINT); in handleAllFingerprintAuthenticatorsRegistered() 1059 case TYPE_FINGERPRINT: in getErrorString()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/doze/ |
H A D | DozeSensorsTest.java | 19 import static android.hardware.biometrics.BiometricAuthenticator.TYPE_FINGERPRINT; 424 mAuthControllerCallback.onEnrollmentsChanged(TYPE_FINGERPRINT); in testUdfpsEnrollmentChanged()
|