Home
last modified time | relevance | path

Searched refs:getAuthenticationMethod (Results 1 – 10 of 10) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/authentication/data/repository/
DAuthenticationRepository.kt149 suspend fun getAuthenticationMethod(): AuthenticationMethodModel in <lambda>() method
230 .map(::getAuthenticationMethod)
281 override suspend fun getAuthenticationMethod(): AuthenticationMethodModel = in getAuthenticationMethod() method
282 getAuthenticationMethod(selectedUserId) in getAuthenticationMethod()
369 private suspend fun getAuthenticationMethod(@UserIdInt userId: Int): AuthenticationMethodModel { in getAuthenticationMethod() method
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/authentication/data/repository/
DAuthenticationRepositoryTest.kt105 assertThat(underTest.getAuthenticationMethod()).isEqualTo(AuthenticationMethodModel.Pin) in authenticationMethod()
109 assertThat(underTest.getAuthenticationMethod()) in authenticationMethod()
114 assertThat(underTest.getAuthenticationMethod()) in authenticationMethod()
120 assertThat(underTest.getAuthenticationMethod()).isEqualTo(AuthenticationMethodModel.Sim) in authenticationMethod()
/frameworks/base/packages/SystemUI/src/com/android/systemui/authentication/domain/interactor/
DAuthenticationInteractor.kt201 suspend fun getAuthenticationMethod() = repository.getAuthenticationMethod() in <lambda>() method in com.android.systemui.authentication.domain.interactor.AuthenticationInteractor
225 val authMethod = getAuthenticationMethod() in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/domain/interactor/
DBouncerInteractor.kt156 if (authenticationInteractor.getAuthenticationMethod() == Sim) { in <lambda>()
177 if (authenticationInteractor.getAuthenticationMethod() in setOf(Pin, Password, Pattern)) { in <lambda>()
DBouncerActionButtonInteractor.kt155 authenticationInteractor.getAuthenticationMethod().isSecure in isReturnToCallButton()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/authentication/domain/interactor/
DAuthenticationInteractorTest.kt69 assertThat(underTest.getAuthenticationMethod()).isEqualTo(Pin) in <lambda>()
74 assertThat(underTest.getAuthenticationMethod()).isEqualTo(Password) in <lambda>()
86 assertThat(underTest.getAuthenticationMethod()).isEqualTo(None) in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/deviceentry/domain/interactor/
DDeviceEntryInteractor.kt250 authenticationInteractor.getAuthenticationMethod().isSecure in <lambda>()
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/authentication/data/repository/
DFakeAuthenticationRepository.kt75 override suspend fun getAuthenticationMethod(): AuthenticationMethodModel { in <lambda>() method in com.android.systemui.authentication.data.repository.FakeAuthenticationRepository
/frameworks/base/packages/SystemUI/src/com/android/systemui/scene/domain/startable/
DSceneContainerStartable.kt436 authenticationInteractor.get().getAuthenticationMethod() == in <lambda>()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/scene/
DSceneFrameworkIntegrationTest.kt631 val authMethod = authenticationInteractor.getAuthenticationMethod() in <lambda>()