Home
last modified time | relevance | path

Searched refs:activeDevices (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
DCastTile.java174 List<CastDevice> activeDevices = getActiveDevices(); in handleClick() local
186 mController.stopCasting(activeDevices.get(0)); in handleClick()
195 List<CastDevice> activeDevices = getActiveDevices(); in willPopDialog() local
196 return activeDevices.isEmpty() || (activeDevices.get(0).tag instanceof RouteInfo); in willPopDialog()
200 ArrayList<CastDevice> activeDevices = new ArrayList<>(); in getActiveDevices() local
204 activeDevices.add(device); in getActiveDevices()
208 return activeDevices; in getActiveDevices()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
DHeadsetProfile.java138 final List<BluetoothDevice> activeDevices = mBluetoothAdapter in getActiveDevice() local
140 return (activeDevices.size() > 0) ? activeDevices.get(0) : null; in getActiveDevice()
DA2dpProfile.java178 final List<BluetoothDevice> activeDevices = mBluetoothAdapter in getActiveDevice()
180 return (activeDevices.size() > 0) ? activeDevices.get(0) : null; in getActiveDevice()
/frameworks/base/services/core/java/com/android/server/media/
DLegacyBluetoothRouteController.java432 List<BluetoothDevice> activeDevices; in onServiceConnected() local
437 activeDevices = mBluetoothAdapter.getActiveDevices(BluetoothProfile.A2DP); in onServiceConnected()
441 activeDevices = mBluetoothAdapter.getActiveDevices( in onServiceConnected()
446 activeDevices = mBluetoothAdapter.getActiveDevices(BluetoothProfile.LE_AUDIO); in onServiceConnected()
457 if (activeDevices.contains(device)) { in onServiceConnected()
/frameworks/base/services/core/java/com/android/server/audio/
DBtHelper.java703 List<BluetoothDevice> activeDevices = adapter.getActiveDevices(profile); in onBtProfileConnected() local
704 if (activeDevices.isEmpty() || activeDevices.get(0) == null) { in onBtProfileConnected()
707 BluetoothDevice device = activeDevices.get(0); in onBtProfileConnected()
793 List<BluetoothDevice> activeDevices = in onHeadsetProfileConnected() local
795 for (BluetoothDevice device : activeDevices) { in onHeadsetProfileConnected()
1210 List<BluetoothDevice> activeDevices = adapter.getActiveDevices(BluetoothProfile.LE_AUDIO); in getLeAudioGroupAddresses() local
1211 for (BluetoothDevice device : activeDevices) { in getLeAudioGroupAddresses()
/frameworks/av/services/audiopolicy/engine/common/src/
DEngineBase.cpp715 DeviceVector activeDevices; in getActiveMediaDevices() local
717 DEVICE_ROLE_PREFERRED, availableDevices, activeDevices) != NO_ERROR) { in getActiveMediaDevices()
718 activeDevices.clear(); in getActiveMediaDevices()
724 activeDevices.add(device); in getActiveMediaDevices()
727 return activeDevices; in getActiveMediaDevices()