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

1 2

  /frameworks/base/core/java/android/bluetooth/
BluetoothManager.java 95 public int getConnectionState(BluetoothDevice device, int profile) {
96 if (DBG) Log.d(TAG,"getConnectionState()");
BluetoothAvrcpController.java 197 public int getConnectionState(BluetoothDevice device) {
202 return mService.getConnectionState(device);
BluetoothProfile.java 200 public int getConnectionState(BluetoothDevice device);
BluetoothA2dp.java 323 public int getConnectionState(BluetoothDevice device) {
328 return mService.getConnectionState(device);
BluetoothA2dpSink.java 332 public int getConnectionState(BluetoothDevice device) {
337 return mService.getConnectionState(device);
BluetoothMap.java 301 public int getConnectionState(BluetoothDevice device) {
302 if (DBG) log("getConnectionState(" + device + ")");
306 return mService.getConnectionState(device);
BluetoothPan.java 328 public int getConnectionState(BluetoothDevice device) {
333 return mPanService.getConnectionState(device);
BluetoothSap.java 327 public int getConnectionState(BluetoothDevice device) {
328 if (DBG) log("getConnectionState(" + device + ")");
332 return mService.getConnectionState(device);
BluetoothGattServer.java 702 public int getConnectionState(BluetoothDevice device) {
703 throw new UnsupportedOperationException("Use BluetoothManager#getConnectionState instead.");
BluetoothHeadset.java 434 public int getConnectionState(BluetoothDevice device) {
435 if (VDBG) log("getConnectionState(" + device + ")");
439 return mService.getConnectionState(device);
    [all...]
BluetoothHealth.java 349 public int getConnectionState(BluetoothDevice device) {
BluetoothInputDevice.java 405 public int getConnectionState(BluetoothDevice device) {
409 return mService.getConnectionState(device);
BluetoothGatt.java     [all...]
BluetoothHeadsetClient.java 568 public int getConnectionState(BluetoothDevice device) {
569 if (VDBG) log("getConnectionState(" + device + ")");
573 return mService.getConnectionState(device);
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/
A2dpSinkService.java 108 int connectionState = mStateMachine.getConnectionState(device);
121 int connectionState = mStateMachine.getConnectionState(device);
141 int getConnectionState(BluetoothDevice device) {
143 return mStateMachine.getConnectionState(device);
201 public int getConnectionState(BluetoothDevice device) {
204 return service.getConnectionState(device);
A2dpService.java 142 int connectionState = mStateMachine.getConnectionState(device);
155 int connectionState = mStateMachine.getConnectionState(device);
175 int getConnectionState(BluetoothDevice device) {
177 return mStateMachine.getConnectionState(device);
273 public int getConnectionState(BluetoothDevice device) {
276 return service.getConnectionState(device);
A2dpSinkStateMachine.java 601 int getConnectionState(BluetoothDevice device) {
669 connectionState = getConnectionState(device);
    [all...]
A2dpStateMachine.java 148 (getConnectionState(mTargetDevice) == BluetoothProfile.STATE_CONNECTING)) {
619 int getConnectionState(BluetoothDevice device) {
701 connectionState = getConnectionState(device);
    [all...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
LocalBluetoothAdapter.java 125 public int getConnectionState() {
126 return mAdapter.getConnectionState();
  /packages/apps/Bluetooth/src/com/android/bluetooth/avrcp/
AvrcpControllerService.java 149 int getConnectionState(BluetoothDevice device) {
205 public int getConnectionState(BluetoothDevice device) {
208 return service.getConnectionState(device);
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
HeadsetService.java 168 public int getConnectionState(BluetoothDevice device) {
171 return service.getConnectionState(device);
338 int connectionState = mStateMachine.getConnectionState(device);
352 int connectionState = mStateMachine.getConnectionState(device);
372 int getConnectionState(BluetoothDevice device) {
374 return mStateMachine.getConnectionState(device);
398 int connectionState = mStateMachine.getConnectionState(device);
412 int connectionState = mStateMachine.getConnectionState(device);
482 int connectionState = mStateMachine.getConnectionState(device);
511 int connectionState = mStateMachine.getConnectionState(device)
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/
HeadsetClientService.java 184 public int getConnectionState(BluetoothDevice device) {
189 return service.getConnectionState(device);
447 int connectionState = mStateMachine.getConnectionState(device);
460 int connectionState = mStateMachine.getConnectionState(device);
480 int getConnectionState(BluetoothDevice device) {
482 return mStateMachine.getConnectionState(device);
509 int connectionState = mStateMachine.getConnectionState(device);
523 int connectionState = mStateMachine.getConnectionState(device);
569 int connectionState = mStateMachine.getConnectionState(device);
581 int connectionState = mStateMachine.getConnectionState(device)
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
AdapterProperties.java 199 int getConnectionState() {
  /packages/apps/Bluetooth/src/com/android/bluetooth/hdp/
HealthService.java 471 return getConnectionState(device);
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/hid/
HidService.java 330 public int getConnectionState(BluetoothDevice device) {
333 return service.getConnectionState(device);
400 if (getConnectionState(device) != BluetoothInputDevice.STATE_DISCONNECTED) {
421 int getConnectionState(BluetoothDevice device) {
433 int inputDeviceState = getConnectionState(device);
467 int state = this.getConnectionState(device);
481 int state = this.getConnectionState(device);
493 int state = this.getConnectionState(device);
507 int state = this.getConnectionState(device);
525 int state = this.getConnectionState(device)
    [all...]

Completed in 2367 milliseconds

1 2