Home
last modified time | relevance | path

Searched refs:isCurrentConnectedDeviceRemote (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/media/dialog/
DMediaOutputAdapterTest.java235 when(mMediaOutputController.isCurrentConnectedDeviceRemote()).thenReturn(true); in onBindViewHolder_bindConnectedRemoteDevice_verifyView()
254 when(mMediaOutputController.isCurrentConnectedDeviceRemote()).thenReturn(true); in onBindViewHolder_bindConnectedRemoteDevice_verifyContentDescriptionNotNull()
268 when(mMediaOutputController.isCurrentConnectedDeviceRemote()).thenReturn(true); in onBindViewHolder_bindSingleConnectedRemoteDevice_verifyView()
288 when(mMediaOutputController.isCurrentConnectedDeviceRemote()).thenReturn(true); in onBindViewHolder_bindConnectedRemoteDeviceWithOnGoingSession_verifyView()
310 when(mMediaOutputController.isCurrentConnectedDeviceRemote()).thenReturn(true); in onBindViewHolder_bindConnectedRemoteDeviceWithHostOnGoingSession_verifyView()
330 when(mMediaOutputController.isCurrentConnectedDeviceRemote()).thenReturn(false); in onBindViewHolder_bindConnectedDeviceWithMutingExpectedDeviceExist_verifyView()
343 when(mMediaOutputController.isCurrentConnectedDeviceRemote()).thenReturn(false); in onBindViewHolder_isMutingExpectedDevice_verifyView()
644 when(mMediaOutputController.isCurrentConnectedDeviceRemote()).thenReturn(false); in onItemClick_clicksWithMutingExpectedDeviceExist_cancelsMuteAwaitConnection()
673 when(mMediaOutputController.isCurrentConnectedDeviceRemote()).thenReturn(true); in onGroupActionTriggered_clickSelectedRemoteDevice_triggerUngrouping()
DMediaOutputControllerTest.java665 assertThat(mMediaOutputController.isCurrentConnectedDeviceRemote()).isTrue(); in isCurrentConnectedDeviceRemote_containsFeatures_returnsTrue()
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/dialog/
DMediaOutputAdapter.java172 && !mController.isCurrentConnectedDeviceRemote()) { in onBind()
260 && !mController.isCurrentConnectedDeviceRemote()) { in onBind()
277 } else if (mController.isCurrentConnectedDeviceRemote() in onBind()
DMediaOutputController.java651 hasMutingExpectedDevice() && !isCurrentConnectedDeviceRemote(); in buildMediaItems()
747 if (!isCurrentConnectedDeviceRemote() && getSelectedMediaDevice().size() == 1) { in attachConnectNewDeviceItemIfNeeded()
761 boolean isCurrentConnectedDeviceRemote() { in isCurrentConnectedDeviceRemote() method in MediaOutputController