/frameworks/base/packages/SystemUI/src/com/android/systemui/authentication/data/repository/ |
D | AuthenticationRepository.kt | 149 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/ |
D | AuthenticationRepositoryTest.kt | 105 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/ |
D | AuthenticationInteractor.kt | 201 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/ |
D | BouncerInteractor.kt | 156 if (authenticationInteractor.getAuthenticationMethod() == Sim) { in <lambda>() 177 if (authenticationInteractor.getAuthenticationMethod() in setOf(Pin, Password, Pattern)) { in <lambda>()
|
D | BouncerActionButtonInteractor.kt | 155 authenticationInteractor.getAuthenticationMethod().isSecure in isReturnToCallButton()
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/authentication/domain/interactor/ |
D | AuthenticationInteractorTest.kt | 69 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/ |
D | DeviceEntryInteractor.kt | 250 authenticationInteractor.getAuthenticationMethod().isSecure in <lambda>()
|
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/authentication/data/repository/ |
D | FakeAuthenticationRepository.kt | 75 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/ |
D | SceneContainerStartable.kt | 436 authenticationInteractor.get().getAuthenticationMethod() == in <lambda>()
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/scene/ |
D | SceneFrameworkIntegrationTest.kt | 631 val authMethod = authenticationInteractor.getAuthenticationMethod() in <lambda>()
|