Home
last modified time | relevance | path

Searched refs:fallbackToDetection (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/log/
DFaceAuthenticationLogger.kt246 fun queueingRequest(uiEvent: FaceAuthUiEvent, fallbackToDetection: Boolean) { in queueingRequest()
252 bool1 = fallbackToDetection in queueingRequest()
284 fun processingRequest(uiEvent: FaceAuthUiEvent?, fallbackToDetection: Boolean) { in processingRequest()
290 bool1 = fallbackToDetection in processingRequest()
299 fallbackToDetection: Boolean? in clearingPendingAuthRequest()
307 str2 = "$fallbackToDetection" in clearingPendingAuthRequest()
/frameworks/base/packages/SystemUI/src/com/android/systemui/deviceentry/data/repository/
DDeviceEntryFaceAuthRepository.kt132 fun requestAuthenticate(uiEvent: FaceAuthUiEvent, fallbackToDetection: Boolean = false) in <lambda>()
140 val fallbackToDetection: Boolean constant in com.android.systemui.deviceentry.data.repository.AuthenticationRequest
355 pendingAuthenticateRequest.value?.fallbackToDetection in clearPendingAuthRequest()
516 fallbackToDetection = false in handleFaceHardwareError()
539 override fun requestAuthenticate(uiEvent: FaceAuthUiEvent, fallbackToDetection: Boolean) { in requestAuthenticate()
546 faceAuthLogger.queueingRequest(uiEvent, fallbackToDetection) in requestAuthenticate()
547 pendingAuthenticateRequest.value = AuthenticationRequest(uiEvent, fallbackToDetection) in requestAuthenticate()
559 !(canRunAuth || (canRunDetect && pending.fallbackToDetection)) || in processPendingAuthRequests()
575 faceAuthLogger.processingRequest(it.uiEvent, it.fallbackToDetection) in processPendingAuthRequests()
577 authenticate(it.uiEvent, it.fallbackToDetection) in processPendingAuthRequests()
[all …]
DNoopDeviceEntryFaceAuthRepository.kt66 override fun requestAuthenticate(uiEvent: FaceAuthUiEvent, fallbackToDetection: Boolean) = Unit in setLockedOut()
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/keyguard/data/repository/
DFakeDeviceEntryFaceAuthRepository.kt64 override fun requestAuthenticate(uiEvent: FaceAuthUiEvent, fallbackToDetection: Boolean) { in requestAuthenticate()
65 _runningAuthRequest.value = uiEvent to fallbackToDetection in requestAuthenticate()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/deviceentry/data/repository/
DDeviceEntryFaceAuthRepositoryTest.kt652 fallbackToDetection = true in authenticateFallbacksToDetectionWhenItCannotRun()
673 fallbackToDetection = true in authenticateFallbacksToDetectionWhenKeyguardIsAlreadyDismissible()
1145 fallbackToDetection = true in testGatingCheckForDetect()
1164 fallbackToDetection = true in testGatingCheckForDetect()
/frameworks/base/packages/SystemUI/src/com/android/systemui/deviceentry/domain/interactor/
DSystemUIDeviceEntryFaceAuthInteractor.kt299 repository.requestAuthenticate(uiEvent, fallbackToDetection = fallbackToDetect) in <lambda>()