HomeSort by relevance Sort by last modified time
    Searched defs:getDevicesMatchingConnectionStates (Results 1 - 25 of 36) sorted by null

1 2

  /frameworks/base/core/java/android/bluetooth/
BluetoothManager.java 133 connectedDevices = iGatt.getDevicesMatchingConnectionStates(
164 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int profile, int[] states) {
165 if (DBG) Log.d(TAG,"getDevicesMatchingConnectionStates");
177 devices = iGatt.getDevicesMatchingConnectionStates(states);
BluetoothAvrcpController.java 180 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
184 return mService.getDevicesMatchingConnectionStates(states);
BluetoothProfile.java 176 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states);
BluetoothA2dp.java 302 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
306 return mService.getDevicesMatchingConnectionStates(states);
BluetoothA2dpSink.java 315 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
319 return mService.getDevicesMatchingConnectionStates(states);
BluetoothMap.java 282 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
286 return mService.getDevicesMatchingConnectionStates(states);
BluetoothPan.java 302 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
306 return mPanService.getDevicesMatchingConnectionStates(states);
BluetoothGattServer.java 720 * {@link BluetoothManager#getDevicesMatchingConnectionStates(int, int[])}
726 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
728 ("Use BluetoothManager#getDevicesMatchingConnectionStates instead.");
BluetoothHeadset.java 417 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
421 return mService.getDevicesMatchingConnectionStates(states);
    [all...]
BluetoothHealth.java 409 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
BluetoothInputDevice.java 388 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
392 return mService.getDevicesMatchingConnectionStates(states);
BluetoothGatt.java     [all...]
BluetoothHeadsetClient.java 547 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
551 return mService.getDevicesMatchingConnectionStates(states);
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/
A2dpSinkService.java 136 List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
138 return mStateMachine.getDevicesMatchingConnectionStates(states);
195 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
198 return service.getDevicesMatchingConnectionStates(states);
A2dpService.java 155 List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
157 return mStateMachine.getDevicesMatchingConnectionStates(states);
252 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
255 return service.getDevicesMatchingConnectionStates(states);
A2dpSinkStateMachine.java 659 synchronized List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
    [all...]
A2dpStateMachine.java 653 synchronized List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/avrcp/
AvrcpControllerService.java 140 List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
200 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
203 return service.getDevicesMatchingConnectionStates(states);
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
HeadsetService.java 162 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
165 return service.getDevicesMatchingConnectionStates(states);
367 private List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
369 return mStateMachine.getDevicesMatchingConnectionStates(states);
HeadsetStateMachine.java     [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/
HeadsetClientService.java 175 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
180 return service.getDevicesMatchingConnectionStates(states);
475 private List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
477 return mStateMachine.getDevicesMatchingConnectionStates(states);
HeadsetClientStateMachine.java     [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/hid/
HidService.java 337 return getDevicesMatchingConnectionStates(
341 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
344 return service.getDevicesMatchingConnectionStates(states);
428 List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
  /packages/apps/Bluetooth/src/com/android/bluetooth/pan/
PanService.java 250 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
253 return service.getDevicesMatchingConnectionStates(states);
315 List<BluetoothDevice> devices = getDevicesMatchingConnectionStates(
320 List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapService.java 484 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
    [all...]

Completed in 470 milliseconds

1 2