Home
last modified time | relevance | path

Searched refs:mCarSystemBarController (Results 1 – 8 of 8) sorted by relevance

/packages/apps/Car/SystemUI/src/com/android/systemui/car/hvac/
DHvacPanelOverlayViewMediator.java43 private final CarSystemBarController mCarSystemBarController; field in HvacPanelOverlayViewMediator
80 mCarSystemBarController = carSystemBarController; in HvacPanelOverlayViewMediator()
88 mCarSystemBarController.registerTopBarTouchListener( in registerListeners()
90 mCarSystemBarController.registerBottomBarTouchListener( in registerListeners()
92 mCarSystemBarController.registerLeftBarTouchListener( in registerListeners()
94 mCarSystemBarController.registerRightBarTouchListener( in registerListeners()
97 mCarSystemBarController.registerHvacPanelController( in registerListeners()
110 mCarSystemBarController.registerHvacPanelOverlayViewController( in registerListeners()
/packages/apps/Car/SystemUI/src/com/android/systemui/car/notification/
DNotificationPanelViewMediator.java53 private final CarSystemBarController mCarSystemBarController; field in NotificationPanelViewMediator
105 mCarSystemBarController = carSystemBarController; in NotificationPanelViewMediator()
123 mCarSystemBarController.registerNotificationController( in registerListeners()
136 mCarSystemBarController.registerNotificationPanelViewController( in registerListeners()
149 mCarSystemBarController.toggleAllNotificationsUnseenIndicator( in setUpOverlayContentViewControllers()
197 mCarSystemBarController.registerTopBarTouchListener( in registerTopBarTouchListener()
202 mCarSystemBarController.registerBottomBarTouchListener( in registerBottomBarTouchListener()
207 mCarSystemBarController.registerLeftBarTouchListener( in registerLeftBarTouchListener()
212 mCarSystemBarController.registerRightBarTouchListener( in registerRightBarTouchListener()
217 return mCarSystemBarController; in getCarSystemBarController()
/packages/apps/Car/SystemUI/src/com/android/systemui/car/systembar/
DCarSystemBar.java108 private final CarSystemBarController mCarSystemBarController; field in CarSystemBar
194 mCarSystemBarController = carSystemBarController; in CarSystemBar()
349 mCarSystemBarController.refreshSystemBar(); in start()
389 mCarSystemBarController.resetViewCache(); in resetSystemBarContent()
393 mCarSystemBarController.removeAll(); in resetSystemBarContent()
400 mCarSystemBarController.showAllKeyguardButtons(isDeviceSetupForUser()); in resetSystemBarContent()
402 mCarSystemBarController.showAllNavigationButtons(isDeviceSetupForUser()); in resetSystemBarContent()
431 mTopSystemBarWindow = mCarSystemBarController.getTopWindow(); in buildNavBarWindows()
432 mBottomSystemBarWindow = mCarSystemBarController.getBottomWindow(); in buildNavBarWindows()
433 mLeftSystemBarWindow = mCarSystemBarController.getLeftWindow(); in buildNavBarWindows()
[all …]
DCarSystemBarMediator.java51 private final CarSystemBarController mCarSystemBarController; field in CarSystemBarMediator
65 mCarSystemBarController = carSystemBarController; in CarSystemBarMediator()
103 mCarSystemBarController.resetSystemBarConfigs(); in onConfigChanged()
/packages/apps/Car/SystemUI/tests/src/com/android/systemui/car/systembar/
DCarSystemBarTest.java102 private CarSystemBarController mCarSystemBarController; field in CarSystemBarTest
171 when(mCarSystemBarController.getTopWindow()).thenReturn(mock(ViewGroup.class)); in setUp()
172 when(mCarSystemBarController.getBottomWindow()).thenReturn(mock(ViewGroup.class)); in setUp()
173 when(mCarSystemBarController.getLeftWindow()).thenReturn(mock(ViewGroup.class)); in setUp()
174 when(mCarSystemBarController.getRightWindow()).thenReturn(mock(ViewGroup.class)); in setUp()
181 mCarSystemBar = new CarSystemBar(mContext, mCarSystemBarController, mLightBarController, in initCarSystemBar()
228 verify(mCarSystemBarController).showAllKeyguardButtons(false); in restartNavBars_newUserNotSetupWithKeyguardShowing_showsKeyguardButtons()
252 verify(mCarSystemBarController).showAllNavigationButtons(true); in restartNavbars_newUserIsSetupWithKeyguardHidden_showsNavigationButtons()
432 verify(mCarSystemBarController, never()).setSystemBarStates(anyInt(), anyInt()); in disable_wrongDisplayId_notSetStatusBarState()
439 verify(mCarSystemBarController).setSystemBarStates(0, 0); in disable_correctDisplayId_setSystemBarStates()
[all …]
/packages/apps/Car/SystemUI/src/com/android/systemui/car/keyguard/
DCarKeyguardViewController.java96 private final CarSystemBarController mCarSystemBarController; field in CarKeyguardViewController
185 mCarSystemBarController = carSystemBarController; in CarKeyguardViewController()
247 mCarSystemBarController.showAllKeyguardButtons(/* isSetUp= */ true); in show()
263 mCarSystemBarController.showAllNavigationButtons(/* isSetUp= */ true); in hide()
310 mCarSystemBarController.showAllOcclusionButtons(/* isSetup= */ true); in setOccluded()
313 mCarSystemBarController.showAllKeyguardButtons(/* isSetup= */ true); in setOccluded()
315 mCarSystemBarController.showAllNavigationButtons(/* isSetUp= */ true); in setOccluded()
/packages/apps/Car/SystemUI/tests/src/com/android/systemui/car/keyguard/
DCarKeyguardViewControllerTest.java105 private CarSystemBarController mCarSystemBarController; field in CarKeyguardViewControllerTest
138 mCarSystemBarController, in setUp()
249 verify(mCarSystemBarController, never()).showAllOcclusionButtons(true); in setOccludedTrue_currentlyIsLocked_showsNavigationButtons()
253 verify(mCarSystemBarController).showAllOcclusionButtons(true); in setOccludedTrue_currentlyIsLocked_showsNavigationButtons()
/packages/apps/Car/SystemUI/tests/src/com/android/systemui/car/hvac/
DHvacPanelOverlayViewMediatorTest.java53 private CarSystemBarController mCarSystemBarController; field in HvacPanelOverlayViewMediatorTest
66 mCarSystemBarController, mHvacPanelOverlayViewController, mBroadcastDispatcher, in setUp()