Home
last modified time | relevance | path

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

/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/tiles/
H A DCastTileTest.java188 when(mController.getCastDevices()).thenReturn(devices); in testStateActive_wifiEnabledAndCasting()
225 when(mController.getCastDevices()).thenReturn(devices); in testStateActive_hotspotEnabledAndConnectedAndCasting()
247 when(mController.getCastDevices()).thenReturn(devices); in testHandleClick_castDevicePresent()
264 when(mController.getCastDevices()).thenReturn(devices); in testHandleClick_projectionOnly()
281 when(mController.getCastDevices()).thenReturn(devices); in testUpdateState_projectionOnly()
303 when(mController.getCastDevices()).thenReturn(devices); in testUpdateState_castingAndProjection()
327 when(mController.getCastDevices()).thenReturn(devices); in testUpdateState_connectedAndConnecting()
357 when(mController.getCastDevices()).thenReturn(devices); in testExpandView_casting_projection()
372 when(mController.getCastDevices()).thenReturn(devices); in testExpandView_connecting_projection()
386 when(mController.getCastDevices()).thenReturn(devices); in testExpandView_casting_mediaRoute()
[all …]
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DCastController.java27 List<CastDevice> getCastDevices(); in getCastDevices() method
H A DCastControllerImpl.java157 public List<CastDevice> getCastDevices() { in getCastDevices() method in CastControllerImpl
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/utils/leaks/
H A DFakeCastController.java41 public List<CastDevice> getCastDevices() { in getCastDevices() method in FakeCastController
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DCastTile.java184 for (CastDevice device : mController.getCastDevices()) { in getActiveDevices()
233 final List<CastDevice> devices = mController.getCastDevices(); in handleUpdateState()
393 updateItems(mController.getCastDevices()); in createDetailView()
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
H A DAutoTileManagerTest.java386 doReturn(buildFakeCastDevice(true)).when(mCastController).getCastDevices(); in castTileAdded_whenDeviceIsCasting()
393 doReturn(buildFakeCastDevice(false)).when(mCastController).getCastDevices(); in castTileNotAdded_whenDeviceIsNotCasting()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DAutoTileManager.java369 for (CastDevice device : mCastController.getCastDevices()) {
H A DPhoneStatusBarPolicy.java491 for (CastDevice device : mCast.getCastDevices()) { in updateCast()