Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DAutoTileManagerTest.java120 @Mock private DeviceControlsController mDeviceControlsController; field in AutoTileManagerTest
203 mCastController, mReduceBrightColorsController, mDeviceControlsController, in createAutoTileManager()
284 InOrder inOrderDevices = inOrder(mDeviceControlsController); in testChangeUserCallbacksStoppedAndStarted()
285 inOrderDevices.verify(mDeviceControlsController).removeCallback(); in testChangeUserCallbacksStoppedAndStarted()
286 inOrderDevices.verify(mDeviceControlsController).setCallback(any()); in testChangeUserCallbacksStoppedAndStarted()
338 InOrder inOrderDevices = inOrder(mDeviceControlsController); in testChangeUserSomeCallbacksNotAdded()
339 inOrderDevices.verify(mDeviceControlsController).removeCallback(); in testChangeUserSomeCallbacksNotAdded()
340 inOrderDevices.verify(mDeviceControlsController).setCallback(any()); in testChangeUserSomeCallbacksNotAdded()
567 verify(mDeviceControlsController).setCallback(captor.capture()); in testAddControlsTileIfNotPresent()
584 verify(mDeviceControlsController).setCallback(captor.capture()); in testDontAddControlsTileIfPresent()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DAutoTileManager.java91 private final DeviceControlsController mDeviceControlsController; field in AutoTileManager
125 mDeviceControlsController = deviceControlsController; in AutoTileManager()
182 mDeviceControlsController.setCallback(mDeviceControlsCallback); in startControllersAndSettingsListeners()
213 mDeviceControlsController.removeCallback(); in stopListening()
343 mHandler.post(() -> mDeviceControlsController.removeCallback());