Home
last modified time | relevance | path

Searched refs:shouldSuppressErrorMsg (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/util/
DIndicationHelperTest.kt69 assertTrue(underTest.shouldSuppressErrorMsg(BiometricSourceType.FACE, FACE_ERROR_CANCELED)) in suppressErrorMsg_faceErrorCancelled()
76 underTest.shouldSuppressErrorMsg(BiometricSourceType.FACE, FACE_ERROR_UNABLE_TO_PROCESS) in suppressErrorMsg_faceErrorUnableToProcess()
83 assertTrue(underTest.shouldSuppressErrorMsg(BiometricSourceType.FACE, FACE_ERROR_TIMEOUT)) in suppressErrorMsg_facePrimaryAuthRequired()
89 assertFalse(underTest.shouldSuppressErrorMsg(BiometricSourceType.FACE, FACE_ERROR_LOCKOUT)) in doNotSuppressErrorMsg_facePrimaryAuthRequired_faceLockout()
91 underTest.shouldSuppressErrorMsg(BiometricSourceType.FACE, FACE_ERROR_LOCKOUT_PERMANENT) in doNotSuppressErrorMsg_facePrimaryAuthRequired_faceLockout()
99 underTest.shouldSuppressErrorMsg( in suppressErrorMsg_fingerprintErrorCancelled()
110 underTest.shouldSuppressErrorMsg( in suppressErrorMsg_fingerprintErrorUserCancelled()
121 underTest.shouldSuppressErrorMsg( in suppressErrorMsg_fingerprintErrorPowerPressed()
132 underTest.shouldSuppressErrorMsg(BiometricSourceType.FACE, FINGERPRINT_ERROR_TIMEOUT) in suppressErrorMsg_fingerprintPrimaryAuthRequired()
140 underTest.shouldSuppressErrorMsg( in doNotSuppressErrorMsg_fingerprintPrimaryAuthRequired_fingerprintLockout()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/util/
DIndicationHelper.kt32 fun shouldSuppressErrorMsg(biometricSource: BiometricSourceType, msgId: Int): Boolean { in shouldSuppressErrorMsg() method in com.android.systemui.keyguard.util.IndicationHelper
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DKeyguardIndicationController.java1442 if (mIndicationHelper.shouldSuppressErrorMsg(FACE, msgId)) { in onFaceAuthError()
1456 if (mIndicationHelper.shouldSuppressErrorMsg(FINGERPRINT, msgId)) { in onFingerprintAuthError()