Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
DDozeHost.java45 void setPulsePending(boolean isPulsePending); in setPulsePending() method
DDozeTriggers.java587 mDozeHost.setPulsePending(true); in requestPulse()
592 mDozeHost.setPulsePending(false); in requestPulse()
597 mDozeHost.setPulsePending(false); in requestPulse()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/doze/
DDozeTriggersTest.java166 ).when(mHost).setPulsePending(boolCaptor.capture()); in testOnNotification_stillWorksAfterOneFailedProxCheck()
198 verify(mHost).setPulsePending(true); in testOnNotification_startsPulseRequest()
219 verify(mHost, never()).setPulsePending(anyBoolean()); in testOnNotification_cannotPulse_notificationSuppressed()
239 verify(mHost, never()).setPulsePending(anyBoolean()); in testOnNotification_alreadyPulsing_notificationNotSuppressed()
347 ).when(mHost).setPulsePending(boolCaptor.capture()); in testQuickPickup()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DDozeServiceHost.java380 setPulsePending(false); // prevent any pending pulses from continuing in stopPulsing()
524 public void setPulsePending(boolean isPulsePending) { in setPulsePending() method in DozeServiceHost
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/phone/
DDozeServiceHostTest.java213 mDozeServiceHost.setPulsePending(true); in testStopPulsing_setPendingPulseToFalse()