Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/scene/domain/startable/
DSceneContainerStartableTest.kt123 authenticationMethod = AuthenticationMethodModel.Pin, in <lambda>()
179 authenticationMethod = AuthenticationMethodModel.Pin, in <lambda>()
231 authenticationMethod = AuthenticationMethodModel.Pin, in <lambda>()
247 authenticationMethod = AuthenticationMethodModel.Pin, in <lambda>()
268 authenticationMethod = AuthenticationMethodModel.Pin, in <lambda>()
298 authenticationMethod = AuthenticationMethodModel.Pin, in <lambda>()
336 authenticationMethod = AuthenticationMethodModel.Pin, in <lambda>()
392 authenticationMethod = AuthenticationMethodModel.Pin, in <lambda>()
508 authenticationMethod = AuthenticationMethodModel.None, in <lambda>()
525 authenticationMethod = AuthenticationMethodModel.None, in <lambda>()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/authentication/domain/interactor/
DAuthenticationInteractor.kt89 val authenticationMethod: Flow<AuthenticationMethodModel> = repository.authenticationMethod in <lambda>() constant in com.android.systemui.authentication.domain.interactor.AuthenticationInteractor
259 authenticationMethod: AuthenticationMethodModel, in <lambda>()
269 authenticationMethod == Pin && authenticationMethod.isInputTooShort(inputLength) -> in <lambda>()
272 authenticationMethod.isInputTooShort(inputLength) -> true in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/ui/viewmodel/
DPinBouncerViewModel.kt54 authenticationMethod: AuthenticationMethodModel, in <lambda>()
66 val isSimAreaVisible = authenticationMethod == AuthenticationMethodModel.Sim in <lambda>()
114 override val authenticationMethod: AuthenticationMethodModel = authenticationMethod in <lambda>() constant
165 if (authenticationMethod == AuthenticationMethodModel.Sim) { in <lambda>()
DBouncerViewModel.kt139 authenticationInteractor.authenticationMethod in <lambda>()
248 authenticationMethod: AuthenticationMethodModel, in <lambda>()
253 if (authenticationMethod == childViewModel?.authenticationMethod) { in <lambda>()
260 return when (authenticationMethod) { in <lambda>()
268 authenticationMethod = authenticationMethod, in <lambda>()
278 authenticationMethod = authenticationMethod, in <lambda>()
DBouncerMessageViewModel.kt114 authenticationInteractor.authenticationMethod in <lambda>()
144 authenticationInteractor.authenticationMethod in <lambda>()
170 authenticationInteractor.authenticationMethod, in <lambda>()
225 authenticationInteractor.authenticationMethod, in <lambda>()
263 authenticationInteractor.authenticationMethod, in <lambda>()
329 authenticationInteractor.authenticationMethod.collectLatest { authMethod -> in <lambda>()
DAuthMethodBouncerViewModel.kt50 abstract val authenticationMethod: AuthenticationMethodModel constant in com.android.systemui.bouncer.ui.viewmodel.AuthMethodBouncerViewModel
DPasswordBouncerViewModel.kt58 override val authenticationMethod = AuthenticationMethodModel.Password in <lambda>() constant
DPatternBouncerViewModel.kt82 override val authenticationMethod = AuthenticationMethodModel.Pattern in <lambda>() constant
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/authentication/data/repository/
DFakeAuthenticationRepository.kt57 override val authenticationMethod: StateFlow<AuthenticationMethodModel> = in <lambda>() constant in com.android.systemui.authentication.data.repository.FakeAuthenticationRepository
76 return authenticationMethod.value in <lambda>()
79 fun setAuthenticationMethod(authenticationMethod: AuthenticationMethodModel) { in <lambda>()
80 _authenticationMethod.value = authenticationMethod in <lambda>()
81 securityMode = authenticationMethod.toSecurityMode() in <lambda>()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/bouncer/ui/viewmodel/
DPinBouncerViewModelTest.kt77 authenticationMethod = AuthenticationMethodModel.Pin, in <lambda>()
92 assertThat(underTest.authenticationMethod).isEqualTo(AuthenticationMethodModel.Pin) in <lambda>()
105 authenticationMethod = AuthenticationMethodModel.Sim, in <lambda>()
134 authenticationMethod = AuthenticationMethodModel.Sim, in <lambda>()
DAuthMethodBouncerViewModelTest.kt50 authenticationMethod = AuthenticationMethodModel.Pin, in <lambda>()
DBouncerViewModelTest.kt122 assertThat(it.authenticationMethod).isEqualTo(authMethod) in <lambda>()
140 firstInstance?.let { assertThat(it.authenticationMethod).isEqualTo(authMethod) } in <lambda>()
DPatternBouncerViewModelTest.kt89 assertThat(underTest.authenticationMethod).isEqualTo(AuthenticationMethodModel.Pattern) in <lambda>()
DPasswordBouncerViewModelTest.kt95 assertThat(underTest.authenticationMethod).isEqualTo(AuthenticationMethodModel.Password) in onShown()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/authentication/data/repository/
DAuthenticationRepositoryTest.kt99 fun authenticationMethod() = in authenticationMethod() method in com.android.systemui.authentication.data.repository.AuthenticationRepositoryTest
101 val authMethod by collectLastValue(underTest.authenticationMethod) in authenticationMethod()
/frameworks/base/packages/SystemUI/src/com/android/systemui/deviceentry/domain/interactor/
DDeviceUnlockedInteractor.kt85 authenticationInteractor.authenticationMethod in <lambda>()
DDeviceEntryInteractor.kt133 authenticationInteractor.authenticationMethod.map { in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/authentication/data/repository/
DAuthenticationRepository.kt120 val authenticationMethod: Flow<AuthenticationMethodModel> in <lambda>() constant
212 override val authenticationMethod: Flow<AuthenticationMethodModel> = constant
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/authentication/domain/interactor/
DAuthenticationInteractorTest.kt64 fun authenticationMethod() = in <lambda>() method
66 val authMethod by collectLastValue(underTest.authenticationMethod) in <lambda>()
80 val authMethod by collectLastValue(underTest.authenticationMethod) in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/domain/interactor/
DBouncerActionButtonInteractor.kt81 authenticationInteractor.authenticationMethod.asUnitFlow,