/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/authentication/domain/interactor/ |
D | AuthenticationInteractorTest.kt | 194 assertThat(underTest.lockoutEndTimestamp).isNull() in <lambda>() 263 assertThat(underTest.lockoutEndTimestamp).isNotNull() in <lambda>() 318 assertThat(underTest.lockoutEndTimestamp).isNotNull() in <lambda>() 328 assertThat(underTest.lockoutEndTimestamp).isNull() in <lambda>() 375 fun lockoutEndTimestamp() = in <lambda>() method in com.android.systemui.authentication.domain.interactor.AuthenticationInteractorTest 381 assertThat(underTest.lockoutEndTimestamp).isNull() in <lambda>() 386 assertThat(underTest.lockoutEndTimestamp).isNull() in <lambda>() 394 assertThat(underTest.lockoutEndTimestamp).isEqualTo(expectedLockoutEndTimestamp) in <lambda>() 399 assertThat(underTest.lockoutEndTimestamp).isEqualTo(expectedLockoutEndTimestamp) in <lambda>() 404 assertThat(underTest.lockoutEndTimestamp).isEqualTo(expectedLockoutEndTimestamp) in <lambda>() [all …]
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/authentication/data/repository/ |
D | AuthenticationRepositoryTest.kt | 168 fun lockoutEndTimestamp() = in lockoutEndTimestamp() method in com.android.systemui.authentication.data.repository.AuthenticationRepositoryTest 177 assertThat(underTest.lockoutEndTimestamp).isNull() in lockoutEndTimestamp() 181 assertThat(underTest.lockoutEndTimestamp).isEqualTo(lockoutEndMs) in lockoutEndTimestamp() 185 assertThat(underTest.lockoutEndTimestamp).isNull() in lockoutEndTimestamp()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/authentication/domain/interactor/ |
D | AuthenticationInteractor.kt | 157 val lockoutEndTimestamp: Long? in <lambda>() constant in com.android.systemui.authentication.domain.interactor.AuthenticationInteractor 158 get() = repository.lockoutEndTimestamp in <lambda>() 265 repository.lockoutEndTimestamp != null -> true in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/authentication/data/repository/ |
D | AuthenticationRepository.kt | 101 val lockoutEndTimestamp: Long? in <lambda>() constant 247 override val lockoutEndTimestamp: Long? constant
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/bouncer/domain/interactor/ |
D | BouncerInteractorTest.kt | 244 assertThat(authenticationInteractor.lockoutEndTimestamp).isNotNull() in <lambda>() 249 assertThat(authenticationInteractor.lockoutEndTimestamp).isNull() in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/domain/interactor/ |
D | BouncerInteractor.kt | 92 !successfullyAuthenticated && authenticationInteractor.lockoutEndTimestamp != null in <lambda>()
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/bouncer/ui/viewmodel/ |
D | BouncerMessageViewModelTest.kt | 126 val lockoutEndMs = authenticationInteractor.lockoutEndTimestamp ?: 0 in <lambda>() 137 assertThat(kosmos.fakeAuthenticationRepository.lockoutEndTimestamp).isNull() in <lambda>()
|
D | BouncerViewModelTest.kt | 168 val lockoutEndMs = kosmos.authenticationInteractor.lockoutEndTimestamp ?: 0 in <lambda>()
|
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/authentication/data/repository/ |
D | FakeAuthenticationRepository.kt | 104 override val lockoutEndTimestamp: Long? in <lambda>() constant in com.android.systemui.authentication.data.repository.FakeAuthenticationRepository
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/ui/viewmodel/ |
D | BouncerMessageViewModel.kt | 357 val endTimestampMs = authenticationInteractor.lockoutEndTimestamp ?: 0 in <lambda>()
|
D | BouncerViewModel.kt | 225 initialValue = authenticationInteractor.lockoutEndTimestamp == null, in <lambda>()
|