Searched refs:isCurrentUserTrustManaged (Results 1 – 5 of 5) sorted by relevance
59 private lateinit var isCurrentUserTrustManaged: FlowValue<Boolean?> variable in com.android.systemui.keyguard.data.repository.TrustRepositoryTest78 isCurrentUserTrustManaged = collectLastValue(underTest.isCurrentUserTrustManaged) in init()91 assertThat(isCurrentUserTrustManaged()).isTrue() in isCurrentUserTrustManaged_whenItChanges_emitsLatestValue()95 assertThat(isCurrentUserTrustManaged()).isFalse() in isCurrentUserTrustManaged_whenItChanges_emitsLatestValue()103 assertThat(collectLastValue(underTest.isCurrentUserTrustManaged)()).isFalse() in isCurrentUserTrustManaged_isFalse_byDefault()117 assertThat(isCurrentUserTrustManaged()).isTrue() in isCurrentUserTrustManaged_whenItChangesForDifferentUser_noops()130 assertThat(isCurrentUserTrustManaged()).isFalse() in isCurrentUserTrustManaged_whenUserChangesWithoutRecentTrustChange_defaultsToFalse()140 assertThat(isCurrentUserTrustManaged()).isFalse() in isCurrentUserTrustManaged_itChangesFirstBeforeUserInfoChanges_emitsCorrectValue()144 assertThat(isCurrentUserTrustManaged()).isTrue() in isCurrentUserTrustManaged_itChangesFirstBeforeUserInfoChanges_emitsCorrectValue()
62 val isCurrentUserTrustManaged: StateFlow<Boolean> constant162 override val isCurrentUserTrustManaged: StateFlow<Boolean> constant in com.android.systemui.keyguard.data.repository.TrustRepositoryImpl167 .onEach { logger.isCurrentUserTrustManaged(it) } in <lambda>()
39 val isTrustAgentCurrentlyAllowed: StateFlow<Boolean> = repository.isCurrentUserTrustManaged
45 override val isCurrentUserTrustManaged: StateFlow<Boolean> constant in com.android.systemui.keyguard.data.repository.FakeTrustRepository
110 fun isCurrentUserTrustManaged(isTrustManaged: Boolean) { in isCurrentUserTrustManaged() method