Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/data/repository/
H A DTrustRepositoryTest.kt232 val isCurrentUserActiveUnlockRunning by regex
233 collectLastValue(underTest.isCurrentUserActiveUnlockRunning)
238 assertThat(isCurrentUserActiveUnlockRunning).isFalse()
242 assertThat(isCurrentUserActiveUnlockRunning).isTrue()
250 val isCurrentUserActiveUnlockRunning by regex
251 collectLastValue(underTest.isCurrentUserActiveUnlockRunning)
255 assertThat(isCurrentUserActiveUnlockRunning).isTrue()
258 assertThat(isCurrentUserActiveUnlockRunning).isFalse()
261 assertThat(isCurrentUserActiveUnlockRunning).isTrue()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/keyguard/logging/
H A DTrustRepositoryLogger.kt101 fun isCurrentUserActiveUnlockRunning(isCurrentUserActiveUnlockRunning: Boolean) { regex
105 { bool1 = isCurrentUserActiveUnlockRunning },
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/data/repository/
H A DTrustRepository.kt49 val isCurrentUserActiveUnlockRunning: Flow<Boolean>
136 override val isCurrentUserActiveUnlockRunning: Flow<Boolean> =
140 .onEach { logger.isCurrentUserActiveUnlockRunning(it) }
/aosp14/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/keyguard/data/repository/
H A DFakeTrustRepository.kt31 override val isCurrentUserActiveUnlockRunning: StateFlow<Boolean> =
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/domain/interactor/
H A DPrimaryBouncerInteractor.kt134 trustRepository.isCurrentUserActiveUnlockRunning.collect {