Home
last modified time | relevance | path

Searched refs:lockoutEndTimestamp (Results 1 – 11 of 11) sorted by relevance

/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/authentication/domain/interactor/
DAuthenticationInteractorTest.kt194 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/
DAuthenticationRepositoryTest.kt168 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/
DAuthenticationInteractor.kt157 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/
DAuthenticationRepository.kt101 val lockoutEndTimestamp: Long? in <lambda>() constant
247 override val lockoutEndTimestamp: Long? constant
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/bouncer/domain/interactor/
DBouncerInteractorTest.kt244 assertThat(authenticationInteractor.lockoutEndTimestamp).isNotNull() in <lambda>()
249 assertThat(authenticationInteractor.lockoutEndTimestamp).isNull() in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/domain/interactor/
DBouncerInteractor.kt92 !successfullyAuthenticated && authenticationInteractor.lockoutEndTimestamp != null in <lambda>()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/bouncer/ui/viewmodel/
DBouncerMessageViewModelTest.kt126 val lockoutEndMs = authenticationInteractor.lockoutEndTimestamp ?: 0 in <lambda>()
137 assertThat(kosmos.fakeAuthenticationRepository.lockoutEndTimestamp).isNull() in <lambda>()
DBouncerViewModelTest.kt168 val lockoutEndMs = kosmos.authenticationInteractor.lockoutEndTimestamp ?: 0 in <lambda>()
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/authentication/data/repository/
DFakeAuthenticationRepository.kt104 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/
DBouncerMessageViewModel.kt357 val endTimestampMs = authenticationInteractor.lockoutEndTimestamp ?: 0 in <lambda>()
DBouncerViewModel.kt225 initialValue = authenticationInteractor.lockoutEndTimestamp == null, in <lambda>()