Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/power/domain/interactor/
DPowerInteractorTest.kt105 assertThat(repository.lastWakeWhy).isNull() in wakeUpIfDozing_notDozing_notWoken()
116 assertThat(repository.lastWakeWhy).isNull() in wakeUpIfDozing_notAllowed_notWoken()
127 assertThat(repository.lastWakeWhy).isEqualTo("testReason") in wakeUpIfDozing_dozingAndAllowed_wokenAndFalsingNotified()
139 assertThat(repository.lastWakeWhy).isNull() in wakeUpForFullScreenIntent_notGoingToSleepAndNotDozing_notWoken()
150 assertThat(repository.lastWakeWhy).isNotNull() in wakeUpForFullScreenIntent_startingToSleep_woken()
160 assertThat(repository.lastWakeWhy).isNotNull() in wakeUpForFullScreenIntent_dozing_woken()
173 assertThat(repository.lastWakeWhy).isEqualTo("testReason") in wakeUpIfDreaming_dreaming_woken()
186 assertThat(repository.lastWakeWhy).isNull() in wakeUpIfDreaming_notDreaming_notWoken()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shade/
DPulsingGestureListenerTest.kt123 assertThat(powerRepository.lastWakeWhy).isNotNull() in testGestureDetector_singleTapEnabled()
143 assertThat(powerRepository.lastWakeWhy).isNotNull() in testGestureDetector_doubleTapEnabled()
175 assertThat(powerRepository.lastWakeWhy).isNull() in testGestureDetector_singleTapEnabled_falsing()
223 assertThat(powerRepository.lastWakeWhy).isNull() in testGestureDetector_doubleTapEnabled_falsing()
243 assertThat(powerRepository.lastWakeWhy).isNull() in testGestureDetector_singleTapEnabled_proxCovered()
263 assertThat(powerRepository.lastWakeWhy).isNull() in testGestureDetector_doubleTapEnabled_proxCovered()
DLockscreenHostedDreamGestureListenerTest.kt104 Truth.assertThat(powerRepository.lastWakeWhy).isNotNull() in testGestureDetector_onSingleTap_whileDreaming()
165 Truth.assertThat(powerRepository.lastWakeWhy).isNull() in testGestureDetector_onSingleTap_falsing()
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/power/data/repository/
DFakePowerRepository.kt44 var lastWakeWhy: String? = null variable in com.android.systemui.power.data.repository.FakePowerRepository
54 lastWakeWhy = why in wakeUp()