Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/doze/
DDozeMachineTest.java207 mMachine.requestPulse(DozeLog.PULSE_REASON_NOTIFICATION); in testPulseDone_goesToDoze()
220 mMachine.requestPulse(DozeLog.PULSE_REASON_NOTIFICATION); in testPulseDone_goesToAoD()
234 mMachine.requestPulse(DozeLog.PULSE_REASON_NOTIFICATION); in testPulseDone_dozeSuppressed_goesToSuppressed()
247 mMachine.requestPulse(DozeLog.PULSE_REASON_NOTIFICATION); in testPulseDone_afterDocked_goesToDockedAoD()
272 mMachine.requestPulse(DozeLog.PULSE_REASON_NOTIFICATION); in testPulseDone_dozeSuppressed_afterDocked_goesToDoze()
287 mMachine.requestPulse(DozeLog.PULSE_REASON_NOTIFICATION); in testPulseDone_afterDockPaused_goesToDoze()
303 mMachine.requestPulse(DozeLog.PULSE_REASON_NOTIFICATION); in testPulseDone_dozeSuppressed_afterDockPaused_goesToDoze()
347 mMachine.requestPulse(DozeLog.PULSE_REASON_NOTIFICATION); in testWakeLock_heldInPulseStates()
370 mMachine.requestPulse(DozeLog.PULSE_REASON_NOTIFICATION); in testWakeLock_releasedAfterPulse()
382 mMachine.requestPulse(DozeLog.PULSE_REASON_NOTIFICATION); in testPulseDuringPulse_doesntCrash()
[all …]
DDozeTriggersTest.java113 verify(mMachine, never()).requestPulse(anyInt()); in testOnNotification_stillWorksAfterOneFailedProxCheck()
119 verify(mMachine).requestPulse(anyInt()); in testOnNotification_stillWorksAfterOneFailedProxCheck()
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
DDozeTriggers.java201 requestPulse(DozeLog.PULSE_REASON_NOTIFICATION, false /* performedProxCheck */, in onNotification()
248 requestPulse(pulseReason, true /* alreadyPerformedProxCheck */, in onSensor()
252 requestPulse(pulseReason, true /* alreadyPerformedProxCheck */, in onSensor()
429 private void requestPulse(final int reason, boolean performedProxCheck, in requestPulse() method in DozeTriggers
484 mMachine.requestPulse(reason); in continuePulseRequest()
504 requestPulse(DozeLog.PULSE_REASON_INTENT, false, /* performedProxCheck */ in onReceive()
DDozeMachine.java194 public void requestPulse(int pulseReason) { in requestPulse() method in DozeMachine