Searched refs:isCurrentUserTrusted (Results 1 – 5 of 5) sorted by relevance
58 private lateinit var isCurrentUserTrusted: FlowValue<Boolean?> variable in com.android.systemui.keyguard.data.repository.TrustRepositoryTest79 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() constant170 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 …]
92 fun isCurrentUserTrusted(isCurrentUserTrusted: Boolean) { in isCurrentUserTrusted() method96 { bool1 = isCurrentUserTrusted }, in isCurrentUserTrusted()
54 val isCurrentUserTrusted: Flow<Boolean> constant194 override val isCurrentUserTrusted: Flow<Boolean> in isUserTrustManaged() constant in com.android.systemui.keyguard.data.repository.TrustRepositoryImpl199 .onEach { logger.isCurrentUserTrusted(it) } in <lambda>()
42 val isTrusted: Flow<Boolean> = repository.isCurrentUserTrusted
37 override val isCurrentUserTrusted: Flow<Boolean> constant in com.android.systemui.keyguard.data.repository.FakeTrustRepository