Home
last modified time | relevance | path

Searched refs:mDozeInteractor (Results 1 – 2 of 2) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
H A DDozeServiceHostTest.java99 @Mock private DozeInteractor mDozeInteractor; field in DozeServiceHostTest
109 mAuthController, mNotificationIconAreaController, mDozeInteractor); in setup()
224 verify(mDozeInteractor).setLastTapToWakePosition(new Point(100, 200)); in onSlpiTap_calls_DozeInteractor()
231 verifyZeroInteractions(mDozeInteractor); in onSlpiTap_doesnt_pass_negative_values()
239 verify(mDozeInteractor).dozeTimeTick(); in dozeTimeTickSentToDozeInteractor()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DDozeServiceHost.java102 private DozeInteractor mDozeInteractor; field in DozeServiceHost
139 mDozeInteractor = dozeInteractor; in DozeServiceHost()
230 mDozeInteractor.setIsDozing(dozing); in updateDozing()
310 mDozeInteractor.dozeTimeTick(); in dozeTimeTick()
368 mDozeInteractor.setLastTapToWakePosition(new Point((int) screenX, (int) screenY)); in onSlpiTap()