Home
last modified time | relevance | path

Searched refs:TYPE_FINGERPRINT (Results 1 – 25 of 30) sorted by relevance

12

/frameworks/base/services/tests/servicestests/src/com/android/server/biometrics/
DBiometricServiceTest.java21 import static android.hardware.biometrics.BiometricAuthenticator.TYPE_FINGERPRINT;
395 TYPE_FINGERPRINT, Authenticators.BIOMETRIC_STRONG, in testAuthenticate_withoutEnrolled_returnsErrorNoBiometrics()
403 eq(TYPE_FINGERPRINT), in testAuthenticate_withoutEnrolled_returnsErrorNoBiometrics()
410 setupAuthForOnly(TYPE_FINGERPRINT, Authenticators.BIOMETRIC_WEAK); in testAuthenticate_notStrongEnough_returnsHardwareNotPresent()
428 TYPE_FINGERPRINT, in testAuthenticate_picksStrongIfAvailable()
469 TYPE_FINGERPRINT, Authenticators.BIOMETRIC_STRONG, in testAuthenticate_whenHalIsDead_returnsErrorHardwareUnavailable()
477 eq(TYPE_FINGERPRINT), in testAuthenticate_whenHalIsDead_returnsErrorHardwareUnavailable()
496 setupAuthForOnly(TYPE_FINGERPRINT, Authenticators.BIOMETRIC_STRONG); in testAuthenticateFingerprint_shouldShowSubtitleForFingerprint()
523 TYPE_FINGERPRINT, in testAuthenticateBothFpAndFace_shouldShowDefaultSubtitle()
599 setupAuthForOnly(TYPE_FINGERPRINT, Authenticators.BIOMETRIC_STRONG); in testAuthenticate_happyPathWithoutConfirmation_strongBiometric()
[all …]
DPreAuthInfoTest.java21 import static android.hardware.biometrics.BiometricAuthenticator.TYPE_FINGERPRINT;
184 assertThat(preAuthInfo.eligibleSensors.get(0).modality).isEqualTo(TYPE_FINGERPRINT); in testFingerprintAuthentication_whenCameraIsUnavailable()
189 TYPE_FINGERPRINT, BiometricManager.Authenticators.BIOMETRIC_STRONG, in getFingerprintSensor()
DInvalidationTrackerTest.java63 BiometricAuthenticator.TYPE_FINGERPRINT, Authenticators.BIOMETRIC_STRONG, in testCallbackReceived_whenAllStrongSensorsInvalidated()
69 BiometricAuthenticator.TYPE_FINGERPRINT, Authenticators.BIOMETRIC_STRONG, in testCallbackReceived_whenAllStrongSensorsInvalidated()
DAuthSessionTest.java20 import static android.hardware.biometrics.BiometricAuthenticator.TYPE_FINGERPRINT;
227 } else if (sensor.modality == TYPE_FINGERPRINT) { in testStartNewAuthSession()
406 .filter(s -> s.modality == TYPE_FINGERPRINT) in testMultiAuth_fingerprintSensorStartsAfterUINotifies()
707 verify(mStatusBarService).onBiometricAuthenticated(TYPE_FINGERPRINT); in onAuthReceivedWhileWaitingForConfirmation_SFPS()
878 TYPE_FINGERPRINT /* modality */, in setupFingerprint()
DUtilsTest.java263 assertFalse(Utils.isConfirmationSupported(BiometricAuthenticator.TYPE_FINGERPRINT)); in testConfirmationSupported()
/frameworks/base/core/java/android/hardware/biometrics/
DBiometricAuthenticator.java52 int TYPE_FINGERPRINT = 1 << 1; field
69 int TYPE_ANY_BIOMETRIC = TYPE_FINGERPRINT | TYPE_IRIS | TYPE_FACE;
74 TYPE_FINGERPRINT,
DParentalControlsUtilsInternal.java87 if (containsFlag(modality, BiometricAuthenticator.TYPE_FINGERPRINT) && dpmFpDisabled) { in parentConsentRequired()
/frameworks/base/services/core/java/com/android/server/biometrics/sensors/fingerprint/
DFingerprintServiceRegistry.java19 import static android.hardware.biometrics.BiometricAuthenticator.TYPE_FINGERPRINT;
59 service.registerAuthenticator(props.sensorId, TYPE_FINGERPRINT, strength, in registerService()
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
DDozeScreenState.java19 import static android.hardware.biometrics.BiometricAuthenticator.TYPE_FINGERPRINT;
242 if (modality == TYPE_FINGERPRINT) {
249 if (modality == TYPE_FINGERPRINT) {
DDozeSensors.java19 import static android.hardware.biometrics.BiometricAuthenticator.TYPE_FINGERPRINT;
863 if (modality == TYPE_FINGERPRINT) {
870 if (modality == TYPE_FINGERPRINT) {
/frameworks/base/packages/SystemUI/shared/biometrics/src/com/android/systemui/biometrics/shared/model/
DBiometricModality.kt32 BiometricAuthenticator.TYPE_FINGERPRINT -> BiometricModality.Fingerprint in asBiometricModality()
/frameworks/base/core/java/android/hardware/fingerprint/
DFingerprintSensorConfigurations.java19 import static android.hardware.biometrics.BiometricAuthenticator.TYPE_FINGERPRINT;
93 if (hidlFingerprintSensorConfig.getModality() == TYPE_FINGERPRINT) { in addHidlSensors()
/frameworks/base/services/tests/servicestests/src/com/android/server/biometrics/sensors/fingerprint/
DFingerprintServiceRegistryTest.java19 import static android.hardware.biometrics.BiometricAuthenticator.TYPE_FINGERPRINT;
106 mIdCaptor.capture(), eq(TYPE_FINGERPRINT), mStrengthCaptor.capture(), any()); in registersAllProviders()
/frameworks/base/services/tests/servicestests/src/com/android/server/biometrics/log/
DOperationContextExtTest.java145 BiometricAuthenticator.TYPE_FINGERPRINT); in updatesFromSource()
199 BiometricAuthenticator.TYPE_FINGERPRINT); in hasFingerprintOperationState()
/frameworks/base/services/core/java/com/android/server/biometrics/
DAuthSession.java20 import static android.hardware.biometrics.BiometricAuthenticator.TYPE_FINGERPRINT;
391 startAllPreparedSensors(sensor -> sensor.modality != TYPE_FINGERPRINT); in startAllPreparedSensorsExceptFingerprint()
395 startAllPreparedSensors(sensor -> sensor.modality == TYPE_FINGERPRINT); in startAllPreparedFingerprintSensors()
981 if ((sensor.modality & BiometricAuthenticator.TYPE_FINGERPRINT) != 0) { in statsModality()
1029 case BiometricAuthenticator.TYPE_FINGERPRINT: in getAcquiredMessageForSensor()
DAuthService.java564 case BiometricAuthenticator.TYPE_FINGERPRINT: in getButtonLabel()
615 case BiometricAuthenticator.TYPE_FINGERPRINT: in getPromptMessage()
683 case BiometricAuthenticator.TYPE_FINGERPRINT: in getSettingName()
698 if (biometricModality == BiometricAuthenticator.TYPE_FINGERPRINT) { in getSettingName()
925 modalities.add(String.valueOf(BiometricAuthenticator.TYPE_FINGERPRINT)); in generateRSdkCompatibleConfiguration()
DPreAuthInfo.java21 import static android.hardware.biometrics.BiometricAuthenticator.TYPE_FINGERPRINT;
261 case TYPE_FINGERPRINT: in mapModalityToDevicePolicyType()
/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
DLegacyLockIconViewControllerTest.java19 import static android.hardware.biometrics.BiometricAuthenticator.TYPE_FINGERPRINT;
103 mAuthControllerCallback.onAllAuthenticatorsRegistered(TYPE_FINGERPRINT); in testUpdateLockIconLocationOnAuthenticatorsRegistered()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/keyguard/data/repository/
DDeviceEntryFingerprintAuthRepositoryTest.kt19 import android.hardware.biometrics.BiometricAuthenticator.TYPE_FINGERPRINT
181 callback.value.onAllAuthenticatorsRegistered(TYPE_FINGERPRINT) in enabledFingerprintTypeProvidesTheCorrectOutputAfterAllAuthenticatorsAreRegistered()
/frameworks/base/services/core/java/com/android/server/biometrics/sensors/
DClientMonitorCallbackConverter.java75 return BiometricAuthenticator.TYPE_FINGERPRINT; in getModality()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/biometrics/
DAuthControllerTest.java19 import static android.hardware.biometrics.BiometricAuthenticator.TYPE_FINGERPRINT;
464 mAuthController.onBiometricAuthenticated(TYPE_FINGERPRINT); in testOnAuthenticationSucceededInvoked_whenSystemRequested()
465 verify(mDialog1).onAuthenticationSucceeded(eq(TYPE_FINGERPRINT)); in testOnAuthenticationSucceededInvoked_whenSystemRequested()
530 final int modality = BiometricAuthenticator.TYPE_FINGERPRINT; in testOnAuthenticationFailedInvoked_whenFingerprintAuthRejected()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DLegacyLockIconViewController.java19 import static android.hardware.biometrics.BiometricAuthenticator.TYPE_FINGERPRINT;
807 if (modality == TYPE_FINGERPRINT) {
814 if (modality == TYPE_FINGERPRINT) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
DAuthController.java20 import static android.hardware.biometrics.BiometricAuthenticator.TYPE_FINGERPRINT;
323 TYPE_FINGERPRINT, userId, sensorId, hasEnrollments)); in handleAllFingerprintAuthenticatorsRegistered()
329 cb.onAllAuthenticatorsRegistered(TYPE_FINGERPRINT); in handleAllFingerprintAuthenticatorsRegistered()
1048 case TYPE_FINGERPRINT: in getErrorString()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/data/repository/
DDeviceEntryFingerprintAuthRepository.kt105 if (modality == BiometricAuthenticator.TYPE_FINGERPRINT) in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/doze/
DDozeSensorsTest.java19 import static android.hardware.biometrics.BiometricAuthenticator.TYPE_FINGERPRINT;
425 mAuthControllerCallback.onEnrollmentsChanged(TYPE_FINGERPRINT); in testUdfpsEnrollmentChanged()

12