Home
last modified time | relevance | path

Searched refs:primaryBouncerShowingSoon (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/data/repository/
DKeyguardBouncerRepository.kt53 val primaryBouncerShowingSoon: StateFlow<Boolean> constant
148 override val primaryBouncerShowingSoon = _primaryBouncerShowingSoon.asStateFlow() in setPrimaryScrimmed() constant in com.android.systemui.bouncer.data.repository.KeyguardBouncerRepositoryImpl
290 primaryBouncerShowingSoon in setPrimaryScrimmed()
/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/domain/interactor/
DPrimaryBouncerInteractor.kt157 (isBouncerShowing() || repository.primaryBouncerShowingSoon.value) && in <lambda>()
338 return (repository.primaryBouncerShowingSoon.value || isBouncerShowing()) && in <lambda>()
350 return repository.primaryBouncerShowingSoon.value || in <lambda>()
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/bouncer/data/repository/
DFakeKeyguardBouncerRepository.kt23 override val primaryBouncerShowingSoon = _primaryBouncerShowingSoon.asStateFlow() constant in com.android.systemui.bouncer.data.repository.FakeKeyguardBouncerRepository
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/bouncer/domain/interactor/
DPrimaryBouncerInteractorTest.kt320 whenever(repository.primaryBouncerShowingSoon.value).thenReturn(true) in testIsInTransit()
322 whenever(repository.primaryBouncerShowingSoon.value).thenReturn(false) in testIsInTransit()