Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/tiles/
H A DCastTileTest.java188 when(mController.getCastDevices()).thenReturn(devices); in testStateActive_wifiEnabledAndCasting()
232 when(mController.getCastDevices()).thenReturn(devices); in stateActive_wifiConnectedAndCasting_newPipeline()
299 when(mController.getCastDevices()).thenReturn(devices); in testStateActive_hotspotEnabledAndConnectedAndCasting()
323 when(mController.getCastDevices()).thenReturn(devices); in testHandleClick_castDevicePresent()
341 when(mController.getCastDevices()).thenReturn(devices); in testHandleClick_projectionOnly()
359 when(mController.getCastDevices()).thenReturn(devices); in testUpdateState_projectionOnly()
382 when(mController.getCastDevices()).thenReturn(devices); in testUpdateState_castingAndProjection()
407 when(mController.getCastDevices()).thenReturn(devices); in testUpdateState_connectedAndConnecting()
440 when(mController.getCastDevices()).thenReturn(devices); in testExpandView_casting_projection()
456 when(mController.getCastDevices()).thenReturn(devices); in testExpandView_connecting_projection()
[all …]
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DCastController.java27 List<CastDevice> getCastDevices(); in getCastDevices() method
H A DCastControllerImpl.java156 public List<CastDevice> getCastDevices() { in getCastDevices() method in CastControllerImpl
222 return getCastDevices().stream().anyMatch( in hasConnectedCastDevice()
/aosp14/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/utils/leaks/
H A DFakeCastController.java41 public List<CastDevice> getCastDevices() { in getCastDevices() method in FakeCastController
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DCastTile.java198 for (CastDevice device : mController.getCastDevices()) { in getActiveDevices()
263 final List<CastDevice> devices = mController.getCastDevices(); in handleUpdateState()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
H A DAutoTileManagerTest.java429 doReturn(buildFakeCastDevice(true)).when(mCastController).getCastDevices(); in castTileAdded_whenDeviceIsCasting()
436 doReturn(buildFakeCastDevice(false)).when(mCastController).getCastDevices(); in castTileNotAdded_whenDeviceIsNotCasting()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DAutoTileManager.java430 for (CastDevice device : mCastController.getCastDevices()) {
H A DPhoneStatusBarPolicy.java518 for (CastDevice device : mCast.getCastDevices()) { in updateCast()