Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
H A DDozeServiceHostTest.java73 private DozeServiceHost mDozeServiceHost; field in DozeServiceHostTest
111 mDozeServiceHost.initialize( in setup()
121 mDozeServiceHost.addCallback(mCallback); in testStartStopDozing()
127 mDozeServiceHost.startDozing(); in testStartStopDozing()
132 mDozeServiceHost.stopDozing(); in testStartStopDozing()
211 mDozeServiceHost.setPulsePending(true); in testStopPulsing_setPendingPulseToFalse()
214 mDozeServiceHost.stopPulsing(); in testStopPulsing_setPendingPulseToFalse()
223 mDozeServiceHost.onSlpiTap(100, 200); in onSlpiTap_calls_DozeInteractor()
229 mDozeServiceHost.onSlpiTap(-1, 200); in onSlpiTap_doesnt_pass_negative_values()
230 mDozeServiceHost.onSlpiTap(100, -2); in onSlpiTap_doesnt_pass_negative_values()
[all …]
H A DCentralSurfacesCommandQueueCallbacksTest.java95 @Mock private DozeServiceHost mDozeServiceHost; field in CentralSurfacesCommandQueueCallbacksTest
131 mDozeServiceHost, in setup()
187 verify(mDozeServiceHost).setAlwaysOnSuppressed(true); in testSuppressAmbientDisplay_suppress()
193 verify(mDozeServiceHost).setAlwaysOnSuppressed(false); in testSuppressAmbientDisplay_unsuppress()
H A DCentralSurfacesImplTest.java285 @Mock private DozeServiceHost mDozeServiceHost; field in CentralSurfacesImplTest
526 mDozeServiceHost, in setup()
1034 when(mDozeServiceHost.isPulsing()).thenReturn(true); in testPulseWhileDozing_updatesScrimController()
1039 when(mDozeServiceHost.isPulsing()).thenReturn(false); in testPulseWhileDozing_updatesScrimController()
1111 when(mDozeServiceHost.getDozingRequested()).thenReturn(true); in testOnStartedWakingUp_isNotDozing()
1118 verify(mDozeServiceHost, never()).stopDozing(); in testOnStartedWakingUp_isNotDozing()
1121 verify(mDozeServiceHost).stopDozing(); in testOnStartedWakingUp_isNotDozing()
1128 when(mDozeServiceHost.getDozingRequested()).thenReturn(true); in testOnStartedWakingUp_doesNotDismissBouncer_whenPulsing()
1136 verify(mDozeServiceHost).stopDozing(); in testOnStartedWakingUp_doesNotDismissBouncer_whenPulsing()
1254 when(mDozeServiceHost.isPulsing()).thenReturn(true); in frpLockedDevice_shadeDisabled()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DCentralSurfacesImpl.java426 DozeServiceHost mDozeServiceHost; field in CentralSurfacesImpl
839 mDozeServiceHost = dozeServiceHost; in CentralSurfacesImpl()
1070 mDozeServiceHost.initialize( in start()
1724 return mDozeServiceHost.isPulsing(); in isPulsing()
2922 mDozeServiceHost.stopDozing();
3112 mDozeServiceHost.updateDozing(); in notifyBiometricAuthModeChanged()
3177 } else if (mDozeServiceHost.isPulsing()) { in updateScrimController()
3567 mDozeServiceHost.updateDozing();
3604 mDozeServiceHost.updateDozing();
3629 if (mDozeServiceHost != null) {
[all …]
H A DCentralSurfacesCommandQueueCallbacks.java99 private final DozeServiceHost mDozeServiceHost; field in CentralSurfacesCommandQueueCallbacks
170 mDozeServiceHost = dozeServiceHost; in CentralSurfacesCommandQueueCallbacks()
544 mDozeServiceHost.setAlwaysOnSuppressed(suppressed); in suppressAmbientDisplay()