Home
last modified time | relevance | path

Searched refs:authenticationMethod (Results 1 – 7 of 7) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/authentication/domain/interactor/
H A DAuthenticationInteractor.kt83 val authenticationMethod: Flow<DomainLayerAuthenticationMethodModel> =
84 repository.authenticationMethod.map { rawModel -> rawModel.toDomainLayer() }
98 authenticationMethod,
99 ) { isUnlocked, authenticationMethod ->
100 !authenticationMethod.isSecure || isUnlocked
138 combine(authenticationMethod, isLockscreenDismissed) {
139 authenticationMethod,
141 authenticationMethod is DomainLayerAuthenticationMethodModel.Swipe &&
/aosp14/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/authentication/data/repository/
H A DFakeAuthenticationRepository.kt51 override val authenticationMethod: StateFlow<AuthenticationMethodModel> =
61 return authenticationMethod.value
64 fun setAuthenticationMethod(authenticationMethod: AuthenticationMethodModel) {
65 _authenticationMethod.value = authenticationMethod
66 securityMode = authenticationMethod.toSecurityMode()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/scene/domain/startable/
H A DSceneContainerStartableTest.kt241 authenticationMethod = AuthenticationMethodModel.None,
257 authenticationMethod = AuthenticationMethodModel.Swipe,
273 authenticationMethod = AuthenticationMethodModel.Pin,
289 authenticationMethod = AuthenticationMethodModel.Pin,
306 authenticationMethod: AuthenticationMethodModel? = null,
321 authenticationMethod?.let {
322 authenticationRepository.setAuthenticationMethod(authenticationMethod.toDataLayer())
324 authenticationMethod != AuthenticationMethodModel.None
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/ui/viewmodel/
H A DBouncerViewModel.kt89 authenticationInteractor.authenticationMethod
90 .map { authenticationMethod ->
91 when (authenticationMethod) {
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/authentication/data/repository/
H A DAuthenticationRepositoryTest.kt84 fun authenticationMethod() = regex
86 val authMethod by collectLastValue(underTest.authenticationMethod)
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/authentication/domain/interactor/
H A DAuthenticationInteractorTest.kt60 fun authenticationMethod() = regex
62 val authMethod by collectLastValue(underTest.authenticationMethod)
80 val authMethod by collectLastValue(underTest.authenticationMethod)
96 val authMethod by collectLastValue(underTest.authenticationMethod)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/authentication/data/repository/
H A DAuthenticationRepository.kt110 val authenticationMethod: Flow<AuthenticationMethodModel>
208 override val authenticationMethod: Flow<AuthenticationMethodModel> =