Searched refs:getConnectedDevices (Results 1 - 25 of 31) sorted by relevance

12

/packages/services/Telecomm/src/com/android/server/telecom/
H A DBluetoothHeadsetProxy.java51 public List<BluetoothDevice> getConnectedDevices() { method in class:BluetoothHeadsetProxy
52 return mBluetoothHeadset.getConnectedDevices();
H A DBluetoothManager.java212 List<BluetoothDevice> deviceList = mBluetoothHeadset.getConnectedDevices();
237 List<BluetoothDevice> deviceList = mBluetoothHeadset.getConnectedDevices();
363 List<BluetoothDevice> deviceList = mBluetoothHeadset.getConnectedDevices();
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
H A DBluetoothManagerTest.java78 when(mHeadsetProxy.getConnectedDevices()).thenReturn(
85 when(mHeadsetProxy.getConnectedDevices()).thenReturn(
92 when(mHeadsetProxy.getConnectedDevices()).thenReturn(
99 when(mHeadsetProxy.getConnectedDevices()).thenReturn(
107 when(mHeadsetProxy.getConnectedDevices()).thenReturn(
115 when(mHeadsetProxy.getConnectedDevices()).thenReturn(
139 when(mHeadsetProxy.getConnectedDevices()).thenReturn(
148 when(mHeadsetProxy.getConnectedDevices()).thenReturn(
158 when(mHeadsetProxy.getConnectedDevices()).thenReturn(
169 when(mHeadsetProxy.getConnectedDevices())
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/a2dpsink/
H A DA2dpSinkService.java154 public List<BluetoothDevice> getConnectedDevices() { method in class:A2dpSinkService
156 return mStateMachine.getConnectedDevices();
280 public List<BluetoothDevice> getConnectedDevices() { method in class:A2dpSinkService.BluetoothA2dpSinkBinder
283 return service.getConnectedDevices();
H A DA2dpSinkStreamHandler.java268 if (avrcpService != null && avrcpService.getConnectedDevices().size() == 1) {
282 if (avrcpService != null && avrcpService.getConnectedDevices().size() == 1) {
297 List<BluetoothDevice> connectedDevices = avrcpService.getConnectedDevices();
323 List<BluetoothDevice> connectedDevices = avrcpService.getConnectedDevices();
H A DA2dpSinkStateMachine.java689 List<BluetoothDevice> getConnectedDevices() { method in class:A2dpSinkStateMachine
849 (avrcpCtrlService.getConnectedDevices().contains(mDevice))){
/packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
H A DHeadsetService.java154 public List<BluetoothDevice> getConnectedDevices() { method in class:HeadsetService.BluetoothHeadsetBinder
157 return service.getConnectedDevices();
387 public List<BluetoothDevice> getConnectedDevices() { method in class:HeadsetService
389 return mStateMachine.getConnectedDevices();
571 for (BluetoothDevice device : getConnectedDevices()) {
587 for (BluetoothDevice device : getConnectedDevices()) {
594 for (BluetoothDevice device : getConnectedDevices()) {
/packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/
H A DMapClientService.java93 public List<BluetoothDevice> getConnectedDevices() { method in class:MapClientService
256 public List<BluetoothDevice> getConnectedDevices() { method in class:MapClientService.Binder
257 if (VDBG) Log.v(TAG, "getConnectedDevices()");
260 return service.getConnectedDevices();
/packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
H A DPbapClientService.java200 public List<BluetoothDevice> getConnectedDevices() { method in class:PbapClientService.BluetoothPbapClientBinder
205 return service.getConnectedDevices();
321 public List<BluetoothDevice> getConnectedDevices() { method in class:PbapClientService
/packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/
H A DA2dpService.java222 public List<BluetoothDevice> getConnectedDevices() { method in class:A2dpService
224 return mStateMachine.getConnectedDevices();
385 public List<BluetoothDevice> getConnectedDevices() { method in class:A2dpService.BluetoothA2dpBinder
388 return service.getConnectedDevices();
/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
H A DPhonePolicy.java359 hsConnDevList = hsService.getConnectedDevices();
363 a2dpConnDevList = a2dpService.getConnectedDevices();
367 panConnDevList = panService.getConnectedDevices();
417 List<BluetoothDevice> deviceList = hsService.getConnectedDevices();
/packages/apps/Bluetooth/src/com/android/bluetooth/pan/
H A DPanService.java153 List<BluetoothDevice> DevList = getConnectedDevices();
274 public List<BluetoothDevice> getConnectedDevices() { method in class:PanService.BluetoothPanBinder
277 return service.getConnectedDevices();
348 List<BluetoothDevice> DevList = getConnectedDevices();
376 public List<BluetoothDevice> getConnectedDevices() { method in class:PanService
H A DBluetoothTetheringNetworkFactory.java160 for (BluetoothDevice device : mPanService.getConnectedDevices()) {
/packages/apps/Nfc/src/com/android/nfc/handover/
H A DBluetoothPeripheralHandover.java218 if (mInput.getConnectedDevices().contains(mDevice)) {
226 if (mA2dp.getConnectedDevices().contains(mDevice) ||
227 mHeadset.getConnectedDevices().contains(mDevice)) {
/packages/apps/Bluetooth/tests/src/com/android/bluetooth/btservice/
H A DPhonePolicyTest.java226 when(mockHeadsetService.getConnectedDevices()).thenReturn(hsConnectedDevices);
286 when(mockHeadsetService.getConnectedDevices()).thenReturn(hsConnectedDevices);
/packages/services/Car/TrustAgent/src/com/android/car/trust/comms/
H A DSimpleBleServer.java137 for (BluetoothDevice d : mGattServer.getConnectedDevices()) {
/packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/connserv/
H A DHfpClientConnectionService.java283 List<BluetoothDevice> devices = mHeadsetProfile.getConnectedDevices();
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/bluetooth/
H A DMapMceTestFragment.java210 List<BluetoothDevice> connectedDevices = proxy.getConnectedDevices();
/packages/apps/Bluetooth/src/com/android/bluetooth/avrcpcontroller/
H A DAvrcpControllerService.java278 public synchronized List<BluetoothDevice> getConnectedDevices() { method in class:AvrcpControllerService
668 public List<BluetoothDevice> getConnectedDevices() { method in class:AvrcpControllerService.BluetoothAvrcpControllerBinder
673 return service.getConnectedDevices();
/packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/
H A DHeadsetClientService.java244 public List<BluetoothDevice> getConnectedDevices() { method in class:HeadsetClientService.BluetoothHeadsetClientBinder
249 return service.getConnectedDevices();
533 public synchronized List<BluetoothDevice> getConnectedDevices() { method in class:HeadsetClientService
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapService.java520 public List<BluetoothDevice> getConnectedDevices() { method in class:BluetoothMapService
1201 public List<BluetoothDevice> getConnectedDevices() { method in class:BluetoothMapService.BluetoothMapBinder
1202 if (VERBOSE) Log.v(TAG, "getConnectedDevices()");
1205 return service.getConnectedDevices();
/packages/apps/Bluetooth/src/com/android/bluetooth/sap/
H A DSapService.java502 public List<BluetoothDevice> getConnectedDevices() { method in class:SapService
837 public List<BluetoothDevice> getConnectedDevices() { method in class:SapService.SapBinder
838 Log.v(TAG, "getConnectedDevices()");
841 return service.getConnectedDevices();
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
H A DContextMap.java353 Set<String> getConnectedDevices() { method in class:ContextMap
/packages/services/Telecomm/src/com/android/server/telecom/bluetooth/
H A DBluetoothRouteManager.java680 List<BluetoothDevice> deviceList = bluetoothHeadset.getConnectedDevices();
750 List<BluetoothDevice> deviceList = bluetoothHeadset.getConnectedDevices();
/packages/apps/Bluetooth/src/com/android/bluetooth/a2dpsink/mbs/
H A DA2dpMediaBrowserService.java391 List<BluetoothDevice> devices = mAvrcpCtrlSrvc.getConnectedDevices();

Completed in 465 milliseconds

12