Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/doze/
DDozeMachineTest.java21 import static com.android.systemui.doze.DozeMachine.State.DOZE_PULSE_DONE;
113 mMachine.requestState(DOZE_PULSE_DONE); in testPulseDone_goesToDoze()
115 verify(mPartMock).transitionTo(DOZE_PULSE_DONE, DOZE); in testPulseDone_goesToDoze()
126 mMachine.requestState(DOZE_PULSE_DONE); in testPulseDone_goesToAoD()
128 verify(mPartMock).transitionTo(DOZE_PULSE_DONE, DOZE_AOD); in testPulseDone_goesToAoD()
192 mMachine.requestState(DOZE_PULSE_DONE); in testWakeLock_releasedAfterPulse()
205 mMachine.requestState(DOZE_PULSE_DONE); in testPulseDuringPulse_doesntCrash()
214 mMachine.requestState(DOZE_PULSE_DONE); in testSuppressingPulse_doesntCrash()
296 || newState == DOZE_PULSE_DONE) { in testPulseReason_getFromTransition()
307 mMachine.requestState(DOZE_PULSE_DONE); in testPulseReason_getFromTransition()
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
DDozeMachine.java59 DOZE_PULSE_DONE, enumConstant
193 || mState == State.DOZE_PULSE_DONE, "must be in pulsing state, but is " + mState); in getPulseReason()
233 } else if (oldState == State.DOZE_PULSE_DONE) { in updatePulseReason()
270 case DOZE_PULSE_DONE: in validateTransition()
287 && requestedState == State.DOZE_PULSE_DONE) { in transitionPolicy()
319 case DOZE_PULSE_DONE: in resolveIntermediateState()
DDozeUi.java70 mMachine.requestState(DozeMachine.State.DOZE_PULSE_DONE); in pulseWhileDozing()
88 case DOZE_PULSE_DONE: in transitionTo()
106 case DOZE_PULSE_DONE: in shouldAnimateWakeup()
DDozeTriggers.java119 mMachine.requestState(DozeMachine.State.DOZE_PULSE_DONE);