Home
last modified time | relevance | path

Searched refs:connectedDevices (Results 1 – 5 of 5) sorted by relevance

/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DBluetoothRouteManagerTest.java65 private BluetoothDevice[] connectedDevices; field in BluetoothRouteManagerTest.BluetoothRouteTestParametersBuilder
119 BluetoothDevice... connectedDevices) { in setConnectedDevices() argument
120 this.connectedDevices = connectedDevices; in setConnectedDevices()
138 connectedDevices, in build()
157 public BluetoothDevice[] connectedDevices; // array of connected devices field in BluetoothRouteManagerTest.BluetoothRouteTestParameters
163 BluetoothDevice[] connectedDevices, String messageDevice, in BluetoothRouteTestParameters() argument
173 this.connectedDevices = connectedDevices; in BluetoothRouteTestParameters()
190 ", connectedDevices=" + Arrays.toString(connectedDevices) + in toString()
375 setupConnectedDevices(params.connectedDevices, params.audioOnDevice); in runParametrizedTestCase()
/packages/apps/Bluetooth/src/com/android/bluetooth/a2dpsink/
DA2dpSinkStreamHandler.java297 List<BluetoothDevice> connectedDevices = avrcpService.getConnectedDevices(); in sendAvrcpPause() local
298 if (!connectedDevices.isEmpty()) { in sendAvrcpPause()
299 BluetoothDevice targetDevice = connectedDevices.get(0); in sendAvrcpPause()
323 List<BluetoothDevice> connectedDevices = avrcpService.getConnectedDevices(); in sendAvrcpPlay() local
324 if (!connectedDevices.isEmpty()) { in sendAvrcpPlay()
325 BluetoothDevice targetDevice = connectedDevices.get(0); in sendAvrcpPlay()
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/bluetooth/
DMapMceTestFragment.java210 List<BluetoothDevice> connectedDevices = proxy.getConnectedDevices(); in onServiceConnected() local
211 if (connectedDevices.size() > 0) { in onServiceConnected()
212 mBluetoothDevice.setText(connectedDevices.get(0).getAddress()); in onServiceConnected()
/packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/
DHeadsetClientService.java536 ArrayList<BluetoothDevice> connectedDevices = new ArrayList<>(); in getConnectedDevices() local
540 connectedDevices.add(bd); in getConnectedDevices()
543 return connectedDevices; in getConnectedDevices()
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
DGattService.java1538 Set<String> connectedDevices = new HashSet<String>(); in getDevicesMatchingConnectionStates() local
1539 connectedDevices.addAll(mClientMap.getConnectedDevices()); in getDevicesMatchingConnectionStates()
1540 connectedDevices.addAll(mServerMap.getConnectedDevices()); in getDevicesMatchingConnectionStates()
1542 for (String address : connectedDevices ) { in getDevicesMatchingConnectionStates()