Home
last modified time | relevance | path

Searched refs:errorStatus (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/deviceentry/domain/interactor/
DBiometricMessageInteractor.kt102 .filter { (errorStatus, fingerprintAuthAllowed) -> in <lambda>() method
103 fingerprintAuthAllowed || errorStatus.isLockoutError() in <lambda>()
105 .map { (errorStatus, _) -> in <lambda>() method
107 errorStatus.isLockoutError() -> FingerprintLockoutMessage(errorStatus.msg) in <lambda>()
108 else -> FingerprintMessage(errorStatus.msg) in <lambda>()
199 .filter { (errorStatus, faceAuthCurrentlyAllowed) -> in <lambda>() method
200 faceAuthCurrentlyAllowed || errorStatus.isLockoutError() in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/deviceentry/data/repository/
DDeviceEntryFaceAuthRepository.kt462 val errorStatus = ErrorFaceAuthenticationStatus(errorCode, errString.toString()) in onAuthenticationError() constant
463 if (errorStatus.isLockoutError()) { in onAuthenticationError()
467 _authenticationStatus.value = errorStatus in onAuthenticationError()
468 if (errorStatus.isHardwareError()) { in onAuthenticationError()
469 faceAuthLogger.hardwareError(errorStatus) in onAuthenticationError()
475 errorStatus.isLockoutError(), in onAuthenticationError()
476 errorStatus.isCancellationError() in onAuthenticationError()
/frameworks/base/packages/SystemUI/src/com/android/systemui/log/
DFaceAuthenticationLogger.kt217 fun hardwareError(errorStatus: ErrorFaceAuthenticationStatus) { in hardwareError()
223 int1 = errorStatus.msgId in hardwareError()
/frameworks/base/core/tests/BroadcastRadioTests/src/android/hardware/radio/
DTunerAdapterTest.java808 int errorStatus = RadioTuner.ERROR_HARDWARE_FAILURE; in onError_forTunerAdapter() local
810 mTunerCallback.onError(errorStatus); in onError_forTunerAdapter()
812 verify(mCallbackMock, timeout(CALLBACK_TIMEOUT_MS)).onError(errorStatus); in onError_forTunerAdapter()