Home
last modified time | relevance | path

Searched refs:DomainLayerAuthenticationMethodModel (Results 1 – 5 of 5) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/bouncer/ui/viewmodel/
H A DBouncerViewModelTest.kt180 DomainLayerAuthenticationMethodModel.None,
181 DomainLayerAuthenticationMethodModel.Swipe,
182 DomainLayerAuthenticationMethodModel.Pin,
183 DomainLayerAuthenticationMethodModel.Password,
184 DomainLayerAuthenticationMethodModel.Pattern,
189 model: DomainLayerAuthenticationMethodModel,
193 is DomainLayerAuthenticationMethodModel.None,
194 is DomainLayerAuthenticationMethodModel.Swipe ->
196 is DomainLayerAuthenticationMethodModel.Pin ->
198 is DomainLayerAuthenticationMethodModel.Password ->
[all …]
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/authentication/domain/interactor/
H A DAuthenticationInteractor.kt83 val authenticationMethod: Flow<DomainLayerAuthenticationMethodModel> =
217 suspend fun getAuthenticationMethod(): DomainLayerAuthenticationMethodModel {
348 private fun DomainLayerAuthenticationMethodModel.createCredential( regex
352 is DomainLayerAuthenticationMethodModel.Pin ->
354 is DomainLayerAuthenticationMethodModel.Password ->
356 is DomainLayerAuthenticationMethodModel.Pattern ->
367 DomainLayerAuthenticationMethodModel {
371 DomainLayerAuthenticationMethodModel.Swipe
373 DomainLayerAuthenticationMethodModel.None
377 DomainLayerAuthenticationMethodModel.Password
[all …]
/aosp14/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/scene/
H A DSceneTestUtils.kt25 …temui.authentication.domain.model.AuthenticationMethodModel as DomainLayerAuthenticationMethodModel
197 fun DomainLayerAuthenticationMethodModel.toDataLayer(): DataLayerAuthenticationMethodModel { regex
199 DomainLayerAuthenticationMethodModel.None -> DataLayerAuthenticationMethodModel.None
200 DomainLayerAuthenticationMethodModel.Swipe ->
202 DomainLayerAuthenticationMethodModel.Pin -> DataLayerAuthenticationMethodModel.Pin
203 DomainLayerAuthenticationMethodModel.Password ->
205 DomainLayerAuthenticationMethodModel.Pattern ->
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/authentication/domain/interactor/
H A DAuthenticationInteractorTest.kt25 …temui.authentication.domain.model.AuthenticationMethodModel as DomainLayerAuthenticationMethodModel
64 assertThat(authMethod).isEqualTo(DomainLayerAuthenticationMethodModel.Pin)
66 .isEqualTo(DomainLayerAuthenticationMethodModel.Pin)
72 assertThat(authMethod).isEqualTo(DomainLayerAuthenticationMethodModel.Password)
74 .isEqualTo(DomainLayerAuthenticationMethodModel.Password)
88 assertThat(authMethod).isEqualTo(DomainLayerAuthenticationMethodModel.Swipe)
90 .isEqualTo(DomainLayerAuthenticationMethodModel.Swipe)
104 assertThat(authMethod).isEqualTo(DomainLayerAuthenticationMethodModel.None)
106 .isEqualTo(DomainLayerAuthenticationMethodModel.None)
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/scene/
H A DSceneFrameworkIntegrationTest.kt24 …temui.authentication.domain.model.AuthenticationMethodModel as DomainLayerAuthenticationMethodModel
199 setAuthMethod(DomainLayerAuthenticationMethodModel.Swipe)
213 setAuthMethod(DomainLayerAuthenticationMethodModel.Swipe)
230 setAuthMethod(DomainLayerAuthenticationMethodModel.Swipe)
353 authMethod: DomainLayerAuthenticationMethodModel,