Home
last modified time | relevance | path

Searched refs:isCurrentUserTrusted (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/keyguard/data/repository/
DTrustRepositoryTest.kt58 private lateinit var isCurrentUserTrusted: FlowValue<Boolean?> variable in com.android.systemui.keyguard.data.repository.TrustRepositoryTest
79 isCurrentUserTrusted = collectLastValue(underTest.isCurrentUserTrusted) in init()
156 assertThat(isCurrentUserTrusted()).isTrue() in isCurrentUserTrusted_whenTrustChanges_emitsLatestValue()
160 assertThat(isCurrentUserTrusted()).isFalse() in isCurrentUserTrusted_whenTrustChanges_emitsLatestValue()
168 val isCurrentUserTrusted = collectLastValue(underTest.isCurrentUserTrusted) in isCurrentUserTrusted_isFalse_byDefault() constant
170 assertThat(isCurrentUserTrusted()).isFalse() in isCurrentUserTrusted_isFalse_byDefault()
185 assertThat(isCurrentUserTrusted()).isTrue() in isCurrentUserTrusted_whenTrustChangesForDifferentUser_noop()
195 assertThat(isCurrentUserTrusted()).isTrue() in isCurrentUserTrusted_whenTrustChangesForCurrentUser_emitsNewValue()
198 assertThat(isCurrentUserTrusted()).isFalse() in isCurrentUserTrusted_whenTrustChangesForCurrentUser_emitsNewValue()
211 assertThat(isCurrentUserTrusted()).isFalse() in isCurrentUserTrusted_whenUserChangesWithoutRecentTrustChange_defaultsToFalse()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/keyguard/logging/
DTrustRepositoryLogger.kt92 fun isCurrentUserTrusted(isCurrentUserTrusted: Boolean) { in isCurrentUserTrusted() method
96 { bool1 = isCurrentUserTrusted }, in isCurrentUserTrusted()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/data/repository/
DTrustRepository.kt54 val isCurrentUserTrusted: Flow<Boolean> constant
194 override val isCurrentUserTrusted: Flow<Boolean> in isUserTrustManaged() constant in com.android.systemui.keyguard.data.repository.TrustRepositoryImpl
199 .onEach { logger.isCurrentUserTrusted(it) } in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/domain/interactor/
DTrustInteractor.kt42 val isTrusted: Flow<Boolean> = repository.isCurrentUserTrusted
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/keyguard/data/repository/
DFakeTrustRepository.kt37 override val isCurrentUserTrusted: Flow<Boolean> constant in com.android.systemui.keyguard.data.repository.FakeTrustRepository