Home
last modified time | relevance | path

Searched refs:REASON_AUTH_BP (Results 1 – 10 of 10) sorted by relevance

/frameworks/base/core/java/android/hardware/biometrics/
DBiometricRequestConstants.java39 public static final int REASON_AUTH_BP = 3; field in BiometricRequestConstants
50 REASON_AUTH_BP,
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/biometrics/
DUdfpsControllerOverlayTest.kt20 import android.hardware.biometrics.BiometricRequestConstants.REASON_AUTH_BP in <lambda>()
228 @Test fun showUdfpsOverlay_bp() = withReason(REASON_AUTH_BP) { showUdfpsOverlay() } in <lambda>()
258 withReason(REASON_AUTH_BP) { in <lambda>()
275 withReason(REASON_AUTH_BP) { in <lambda>()
292 withReason(REASON_AUTH_BP) { in <lambda>()
309 withReason(REASON_AUTH_BP) { in <lambda>()
465 @Test fun hideUdfpsOverlay_bp() = withReason(REASON_AUTH_BP) { hideUdfpsOverlay() } in <lambda>()
490 fun canNotHide() = withReason(REASON_AUTH_BP) { assertThat(controllerOverlay.hide()).isFalse() } in <lambda>()
494 withReason(REASON_AUTH_BP) { in <lambda>()
501 withReason(REASON_AUTH_BP) { in <lambda>()
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/data/repository/
DBiometricStatusRepositoryTest.kt22 import android.hardware.biometrics.BiometricRequestConstants.REASON_AUTH_BP
83 AuthenticationStartedInfo.Builder(BiometricSourceType.FINGERPRINT, REASON_AUTH_BP) in updatesFingerprintAuthenticationReason_whenBiometricPromptAuthenticationStarted()
204 AuthenticationStartedInfo.Builder(BiometricSourceType.FINGERPRINT, REASON_AUTH_BP) in updatesFingerprintAuthenticationReason_whenAuthenticationStopped()
208 AuthenticationStoppedInfo.Builder(BiometricSourceType.FINGERPRINT, REASON_AUTH_BP) in updatesFingerprintAuthenticationReason_whenAuthenticationStopped()
224 REASON_AUTH_BP, in updatesFingerprintAcquiredStatusWhenBiometricPromptAuthenticationAcquired()
/frameworks/base/services/tests/servicestests/src/com/android/server/biometrics/sensors/face/aidl/
DFaceAuthenticationClientTest.java338 BiometricRequestConstants.REASON_AUTH_BP).build() in testAuthenticationStateListeners_onAuthenticationStartedAndStopped()
347 BiometricRequestConstants.REASON_AUTH_BP).build() in testAuthenticationStateListeners_onAuthenticationStartedAndStopped()
363 BiometricRequestConstants.REASON_AUTH_BP, FACE_ACQUIRED_START) in testAuthenticationStateListeners_onAuthenticationAcquired_onAuthenticationHelp()
375 BiometricRequestConstants.REASON_AUTH_BP, FACE_ACQUIRED_TOO_DARK) in testAuthenticationStateListeners_onAuthenticationAcquired_onAuthenticationHelp()
380 BiometricRequestConstants.REASON_AUTH_BP, in testAuthenticationStateListeners_onAuthenticationAcquired_onAuthenticationHelp()
402 BiometricRequestConstants.REASON_AUTH_BP, in testAuthenticationStateListeners_onAuthenticationError()
408 BiometricRequestConstants.REASON_AUTH_BP).build() in testAuthenticationStateListeners_onAuthenticationError()
426 BiometricRequestConstants.REASON_AUTH_BP, true, USER_ID) in testAuthenticationStateListeners_onAuthenticationSucceeded()
444 BiometricRequestConstants.REASON_AUTH_BP, USER_ID) in testAuthenticationStateListeners_onAuthenticationFailed()
/frameworks/base/services/tests/servicestests/src/com/android/server/biometrics/sensors/fingerprint/aidl/
DFingerprintAuthenticationClientTest.java454 BiometricRequestConstants.REASON_AUTH_BP).build() in showHideOverlay()
465 BiometricRequestConstants.REASON_AUTH_BP).build() in showHideOverlay()
482 BiometricRequestConstants.REASON_AUTH_BP, FINGERPRINT_ACQUIRED_START) in testAuthenticationStateListeners_onAuthenticationAcquired_onAuthenticationHelp()
495 BiometricRequestConstants.REASON_AUTH_BP, FINGERPRINT_ACQUIRED_TOO_FAST) in testAuthenticationStateListeners_onAuthenticationAcquired_onAuthenticationHelp()
500 BiometricRequestConstants.REASON_AUTH_BP, in testAuthenticationStateListeners_onAuthenticationAcquired_onAuthenticationHelp()
522 BiometricRequestConstants.REASON_AUTH_BP, in testAuthenticationStateListeners_onError()
528 BiometricRequestConstants.REASON_AUTH_BP).build() in testAuthenticationStateListeners_onError()
547 BiometricRequestConstants.REASON_AUTH_BP, in testAuthenticationStateListeners_onLockoutPermanent()
553 BiometricRequestConstants.REASON_AUTH_BP).build() in testAuthenticationStateListeners_onLockoutPermanent()
570 BiometricRequestConstants.REASON_AUTH_BP, true, USER_ID) in testAuthenticationStateListeners_onAuthenticationSucceeded()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
DUdfpsShell.kt21 import android.hardware.biometrics.BiometricRequestConstants.REASON_AUTH_BP
113 "auth-bp" -> REASON_AUTH_BP in getEnrollmentReason()
DUdfpsControllerOverlay.kt24 import android.hardware.biometrics.BiometricRequestConstants.REASON_AUTH_BP in <lambda>()
394 REASON_AUTH_BP -> { in <lambda>()
564 this == REASON_AUTH_BP
DUdfpsController.java22 import static android.hardware.biometrics.BiometricRequestConstants.REASON_AUTH_BP;
496 case REASON_AUTH_BP: in getBiometricSessionType()
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/data/repository/
DBiometricStatusRepository.kt21 import android.hardware.biometrics.BiometricRequestConstants.REASON_AUTH_BP in <lambda>()
219 REASON_AUTH_BP -> AuthenticationReason.BiometricPromptAuthentication in toAuthenticationReason()
/frameworks/base/services/core/java/com/android/server/biometrics/sensors/
DAuthenticationClient.java426 return BiometricRequestConstants.REASON_AUTH_BP; in getRequestReason()