Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
DOverviewProxyRecentsImpl.java61 IOverviewProxy overviewProxy = mOverviewProxyService.getProxy(); in showRecentApps() local
62 if (overviewProxy != null) { in showRecentApps()
64 overviewProxy.onOverviewShown(triggeredFromAltTab); in showRecentApps()
73 IOverviewProxy overviewProxy = mOverviewProxyService.getProxy(); in hideRecentApps() local
74 if (overviewProxy != null) { in hideRecentApps()
76 overviewProxy.onOverviewHidden(triggeredFromAltTab, triggeredFromHomeKey); in hideRecentApps()
86 IOverviewProxy overviewProxy = mOverviewProxyService.getProxy(); in toggleRecentApps() local
87 if (overviewProxy != null) { in toggleRecentApps()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/recents/
DOverviewProxyServiceTest.kt99 @Mock private lateinit var overviewProxy: IOverviewProxy.Stub variable in com.android.systemui.recents.OverviewProxyServiceTest
127 context.addMockService(serviceComponent, overviewProxy) in setUp()
133 whenever(overviewProxy.queryLocalInterface(ArgumentMatchers.anyString())) in setUp()
134 .thenReturn(overviewProxy) in setUp()
135 whenever(overviewProxy.asBinder()).thenReturn(overviewProxy) in setUp()
159 clearInvocations(overviewProxy) in wakefulnessLifecycle_dispatchFinishedWakingUpSetsSysUIflagToAWAKE()
163 verify(overviewProxy) in wakefulnessLifecycle_dispatchFinishedWakingUpSetsSysUIflagToAWAKE()
173 verify(overviewProxy) in wakefulnessLifecycle_dispatchStartedWakingUpSetsSysUIflagToWAKING()
183 verify(overviewProxy) in wakefulnessLifecycle_dispatchFinishedGoingToSleepSetsSysUIflagToASLEEP()
195 verify(overviewProxy) in wakefulnessLifecycle_dispatchStartedGoingToSleepSetsSysUIflagToGOING_TO_SLEEP()