Home
last modified time | relevance | path

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

/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DCastTile.java157 List<CastDevice> activeDevices = getActiveDevices(); in handleClick() local
169 mController.stopCasting(activeDevices.get(0)); in handleClick()
178 List<CastDevice> activeDevices = getActiveDevices(); in willPopDetail() local
179 return activeDevices.isEmpty() || (activeDevices.get(0).tag instanceof RouteInfo); in willPopDetail()
183 ArrayList<CastDevice> activeDevices = new ArrayList<>(); in getActiveDevices() local
187 activeDevices.add(device); in getActiveDevices()
191 return activeDevices; in getActiveDevices()
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/hearingaid/
H A DHearingAidService.java590 ArrayList<BluetoothDevice> activeDevices = new ArrayList<>(); in getActiveDevices() local
591 activeDevices.add(null); in getActiveDevices()
592 activeDevices.add(null); in getActiveDevices()
595 return activeDevices; in getActiveDevices()
604 activeDevices.set(1, device); in getActiveDevices()
606 activeDevices.set(0, device); in getActiveDevices()
611 return activeDevices; in getActiveDevices()
/aosp12/packages/apps/Settings/src/com/android/settings/sound/
H A DMediaOutputPreferenceController.java123 List<BluetoothDevice> activeDevices = hearingAidProfile.getActiveDevices(); in findActiveHearingAidDevice() local
124 for (BluetoothDevice btDevice : activeDevices) { in findActiveHearingAidDevice()
H A DAudioSwitchPreferenceController.java250 List<BluetoothDevice> activeDevices = hearingAidProfile.getActiveDevices(); in findActiveHearingAidDevice() local
251 for (BluetoothDevice btDevice : activeDevices) { in findActiveHearingAidDevice()
/aosp12/frameworks/av/services/audiopolicy/engine/common/src/
H A DEngineBase.cpp609 DeviceVector activeDevices; in getActiveMediaDevices() local
611 DEVICE_ROLE_PREFERRED, availableDevices, activeDevices) != NO_ERROR) { in getActiveMediaDevices()
612 activeDevices.clear(); in getActiveMediaDevices()
618 activeDevices.add(device); in getActiveMediaDevices()
621 return activeDevices; in getActiveMediaDevices()
/aosp12/frameworks/base/services/core/java/com/android/server/media/
H A DBluetoothRouteProvider.java402 List<BluetoothDevice> activeDevices; in onServiceConnected() local
407 activeDevices = Collections.singletonList(mA2dpProfile.getActiveDevice()); in onServiceConnected()
411 activeDevices = mHearingAidProfile.getActiveDevices(); in onServiceConnected()
422 if (activeDevices.contains(device)) { in onServiceConnected()
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/le_audio/
H A DLeAudioService.java405 ArrayList<BluetoothDevice> activeDevices = new ArrayList<>(); in getActiveDevices() local
406 return activeDevices; in getActiveDevices()
/aosp12/frameworks/av/services/audiopolicy/managerdefault/
H A DAudioPolicyManager.cpp6165 DeviceVector activeDevices; in getDevicesForStream() local
6177 activeDevices.merge(outputDesc->devices()); in getDevicesForStream()
6184 if (!activeDevices.isEmpty()) { in getDevicesForStream()
6185 devices = activeDevices; in getDevicesForStream()