Home
last modified time | relevance | path

Searched refs:HelpFaceAuthenticationStatus (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/deviceentry/domain/interactor/
DBiometricMessageInteractor.kt32 import com.android.systemui.deviceentry.shared.model.HelpFaceAuthenticationStatus in <lambda>()
67 private val faceHelp: Flow<HelpFaceAuthenticationStatus> = in <lambda>()
68 faceAuthInteractor.authenticationStatus.filterIsInstance<HelpFaceAuthenticationStatus>() in <lambda>()
157 Flow<(HelpFaceAuthenticationStatus) -> Boolean> = in <lambda>()
167 { helpStatus: HelpFaceAuthenticationStatus -> in <lambda>()
173 flowOf { _: HelpFaceAuthenticationStatus -> true } in <lambda>()
175 flowOf { _: HelpFaceAuthenticationStatus -> false } in <lambda>()
DFaceHelpMessageDeferralInteractor.kt26 import com.android.systemui.deviceentry.shared.model.HelpFaceAuthenticationStatus in <lambda>()
54 private val faceHelp: Flow<HelpFaceAuthenticationStatus> = in <lambda>()
55 faceAuthInteractor.authenticationStatus.filterIsInstance<HelpFaceAuthenticationStatus>() in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/deviceentry/domain/interactor/
DBiometricMessageInteractorTest.kt36 import com.android.systemui.deviceentry.shared.model.HelpFaceAuthenticationStatus
269 HelpFaceAuthenticationStatus( in faceHelpMessage_faceOnly()
296 HelpFaceAuthenticationStatus( in faceHelpMessageShouldDefer()
321 HelpFaceAuthenticationStatus( in faceHelpMessage_coEx()
/frameworks/base/packages/SystemUI/src/com/android/systemui/deviceentry/shared/model/
DFaceAuthenticationModels.kt42 data class HelpFaceAuthenticationStatus( dataClass
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/bouncer/ui/viewmodel/
DBouncerMessageViewModelTest.kt42 import com.android.systemui.deviceentry.shared.model.HelpFaceAuthenticationStatus in <lambda>()
382 HelpFaceAuthenticationStatus(1, "some helpful message") in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/deviceentry/data/repository/
DDeviceEntryFaceAuthRepository.kt40 import com.android.systemui.deviceentry.shared.model.HelpFaceAuthenticationStatus in <lambda>()
485 _authenticationStatus.value = HelpFaceAuthenticationStatus(code, helpStr.toString()) in onAuthenticationHelp()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/deviceentry/data/repository/
DDeviceEntryFaceAuthRepositoryTest.kt55 import com.android.systemui.deviceentry.shared.model.HelpFaceAuthenticationStatus
498 val response = authStatus() as HelpFaceAuthenticationStatus in faceHelpMessagesAreIgnoredBasedOnConfig()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardUpdateMonitor.java134 import com.android.systemui.deviceentry.shared.model.HelpFaceAuthenticationStatus;
1349 } else if (status instanceof HelpFaceAuthenticationStatus) {
1350 HelpFaceAuthenticationStatus helpMsg =
1351 (HelpFaceAuthenticationStatus) status;