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

1 2

  /frameworks/base/core/java/android/bluetooth/
IBluetoothA2dp.aidl 32 int getConnectionState(in BluetoothDevice device);
IBluetoothPan.aidl 34 int getConnectionState(in BluetoothDevice device);
BluetoothProfile.java 154 public int getConnectionState(BluetoothDevice device);
IBluetoothInputDevice.aidl 32 int getConnectionState(in BluetoothDevice device);
IBluetoothHeadset.aidl 32 int getConnectionState(in BluetoothDevice device);
BluetoothA2dp.java 306 public int getConnectionState(BluetoothDevice device) {
311 return mService.getConnectionState(device);
BluetoothPan.java 303 public int getConnectionState(BluetoothDevice device) {
308 return mPanService.getConnectionState(device);
BluetoothInputDevice.java 381 public int getConnectionState(BluetoothDevice device) {
385 return mService.getConnectionState(device);
BluetoothHeadset.java 424 public int getConnectionState(BluetoothDevice device) {
425 if (VDBG) log("getConnectionState(" + device + ")");
429 return mService.getConnectionState(device);
    [all...]
BluetoothHealth.java 352 public int getConnectionState(BluetoothDevice device) {
  /packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/
A2dpService.java 115 int connectionState = mStateMachine.getConnectionState(device);
128 int connectionState = mStateMachine.getConnectionState(device);
148 int getConnectionState(BluetoothDevice device) {
150 return mStateMachine.getConnectionState(device);
229 public int getConnectionState(BluetoothDevice device) {
232 return service.getConnectionState(device);
A2dpStateMachine.java 584 int getConnectionState(BluetoothDevice device) {
666 connectionState = getConnectionState(device);
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
HeadsetService.java 163 public int getConnectionState(BluetoothDevice device) {
166 return service.getConnectionState(device);
317 int connectionState = mStateMachine.getConnectionState(device);
330 int connectionState = mStateMachine.getConnectionState(device);
350 int getConnectionState(BluetoothDevice device) {
352 return mStateMachine.getConnectionState(device);
376 int connectionState = mStateMachine.getConnectionState(device);
390 int connectionState = mStateMachine.getConnectionState(device);
453 int connectionState = mStateMachine.getConnectionState(device);
463 int connectionState = mStateMachine.getConnectionState(device)
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/hid/
HidService.java 313 public int getConnectionState(BluetoothDevice device) {
316 return service.getConnectionState(device);
383 if (getConnectionState(device) != BluetoothInputDevice.STATE_DISCONNECTED) {
404 int getConnectionState(BluetoothDevice device) {
416 int inputDeviceState = getConnectionState(device);
450 int state = this.getConnectionState(device);
464 int state = this.getConnectionState(device);
476 int state = this.getConnectionState(device);
490 int state = this.getConnectionState(device);
508 int state = this.getConnectionState(device)
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/handover/
BluetoothHeadsetHandover.java 202 if (mHeadset.getConnectionState(mDevice) != BluetoothProfile.STATE_DISCONNECTED) {
208 if (mA2dp.getConnectionState(mDevice) != BluetoothProfile.STATE_DISCONNECTED) {
266 if (mHeadset.getConnectionState(mDevice) != BluetoothProfile.STATE_CONNECTED) {
272 if (mA2dp.getConnectionState(mDevice) != BluetoothProfile.STATE_CONNECTED) {
  /packages/apps/Bluetooth/src/com/android/bluetooth/pan/
PanService.java 202 public int getConnectionState(BluetoothDevice device) {
205 return service.getConnectionState(device);
245 if (getConnectionState(device) != BluetoothProfile.STATE_DISCONNECTED) {
261 int getConnectionState(BluetoothDevice device) {
306 int panDeviceState = getConnectionState(device);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
BluetoothController.java 62 handleConnectionStateChange(adapter.getConnectionState());
  /packages/apps/Settings/src/com/android/settings/bluetooth/
A2dpProfile.java 118 return mService.getConnectionState(device);
HidProfile.java 96 ? mService.getConnectionState(device)
PanProfile.java 105 return mService.getConnectionState(device);
HeadsetProfile.java 143 ? mService.getConnectionState(device)
  /frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
BluetoothTestUtils.java     [all...]
  /tools/motodev/src/plugins/android.codeutils/src/com/motorola/studio/android/codeutils/db/utils/
DatabaseUtils.java 418 if (profile.getConnectionState() == IConnectionProfile.CONNECTED_STATE)
424 else if (profile.getConnectionState() == IConnectionProfile.DISCONNECTED_STATE)
527 ) && (profile.getConnectionState() == IConnectionProfile.CONNECTED_STATE // the connection is up and running
    [all...]
  /tools/motodev/src/plugins/db.core/src/com/motorolamobility/studio/android/db/core/model/
DbModel.java 426 if (connProfile.getConnectionState() != IConnectionProfile.DISCONNECTED_STATE)
568 return connProfile.getConnectionState() == IConnectionProfile.CONNECTED_STATE;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PhoneStatusBarPolicy.java 171 if (adapter.getConnectionState() == BluetoothAdapter.STATE_CONNECTED) {

Completed in 339 milliseconds

1 2