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

1 2 3

  /frameworks/base/core/java/android/bluetooth/
BluetoothManager.java 137 connectedDevices = iGatt.getDevicesMatchingConnectionStates(
165 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int profile, int[] states) {
166 if (DBG) Log.d(TAG, "getDevicesMatchingConnectionStates");
178 devices = iGatt.getDevicesMatchingConnectionStates(states);
BluetoothPbap.java 252 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
253 log("getDevicesMatchingConnectionStates: states=" + Arrays.toString(states));
260 return service.getDevicesMatchingConnectionStates(states);
BluetoothProfile.java 244 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states);
BluetoothA2dpSink.java 319 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
324 return service.getDevicesMatchingConnectionStates(states);
BluetoothAvrcpController.java 199 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
204 return service.getDevicesMatchingConnectionStates(states);
BluetoothGattServer.java 835 * {@link BluetoothManager#getDevicesMatchingConnectionStates(int, int[])}
841 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
    [all...]
BluetoothHearingAid.java 343 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
348 return mService.getDevicesMatchingConnectionStates(states);
BluetoothMap.java 297 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
302 return service.getDevicesMatchingConnectionStates(states);
BluetoothMapClient.java 260 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
265 return service.getDevicesMatchingConnectionStates(states);
BluetoothPan.java 317 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
322 return service.getDevicesMatchingConnectionStates(states);
BluetoothPbapClient.java 249 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
256 return service.getDevicesMatchingConnectionStates(states);
BluetoothSap.java 325 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
330 return service.getDevicesMatchingConnectionStates(states);
BluetoothA2dp.java 402 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
407 return mService.getDevicesMatchingConnectionStates(states);
    [all...]
BluetoothHealth.java 411 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
BluetoothHidDevice.java 511 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
515 return service.getDevicesMatchingConnectionStates(states);
BluetoothHidHost.java 410 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
415 return service.getDevicesMatchingConnectionStates(states);
BluetoothHeadset.java 522 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
527 return service.getDevicesMatchingConnectionStates(states);
    [all...]
BluetoothGatt.java     [all...]
BluetoothHeadsetClient.java 545 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
550 return service.getDevicesMatchingConnectionStates(states);
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/a2dpsink/
A2dpSinkService.java 140 List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
142 return mStateMachine.getDevicesMatchingConnectionStates(states);
286 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
291 return service.getDevicesMatchingConnectionStates(states);
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
PbapClientService.java 206 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
211 return service.getDevicesMatchingConnectionStates(states);
307 return getDevicesMatchingConnectionStates(desiredStates);
310 private List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
PbapClientStateMachine.java 387 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/
HeadsetClientService.java 241 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
246 return service.getDevicesMatchingConnectionStates(states);
515 private synchronized List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/
MapClientService.java 184 return getDevicesMatchingConnectionStates(new int[]{BluetoothAdapter.STATE_CONNECTED});
191 public synchronized List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
192 Log.d(TAG, "getDevicesMatchingConnectionStates" + Arrays.toString(states));
442 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
444 Log.v(TAG, "getDevicesMatchingConnectionStates()");
450 return service.getDevicesMatchingConnectionStates(states);
  /packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/hfp/
HeadsetServiceAndStateMachineTest.java 292 mHeadsetService.getDevicesMatchingConnectionStates(
307 mHeadsetService.getDevicesMatchingConnectionStates(
422 Assert.assertThat(mHeadsetServiceBinder.getDevicesMatchingConnectionStates(
458 Assert.assertThat(mHeadsetServiceBinder.getDevicesMatchingConnectionStates(
498 Assert.assertThat(mHeadsetServiceBinder.getDevicesMatchingConnectionStates(
526 Assert.assertThat(mHeadsetServiceBinder.getDevicesMatchingConnectionStates(
    [all...]

Completed in 753 milliseconds

1 2 3