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

1 2 3

  /packages/services/Telecomm/src/com/android/server/telecom/
BluetoothHeadsetProxy.java 55 public int getConnectionState(BluetoothDevice device) {
56 return mBluetoothHeadset.getConnectionState(device);
  /frameworks/base/core/java/android/bluetooth/
BluetoothManager.java 98 public int getConnectionState(BluetoothDevice device, int profile) {
99 if (DBG) Log.d(TAG,"getConnectionState()");
BluetoothAvrcpController.java 215 public int getConnectionState(BluetoothDevice device) {
220 return mService.getConnectionState(device);
BluetoothProfile.java 219 public int getConnectionState(BluetoothDevice device);
BluetoothA2dpSink.java 333 public int getConnectionState(BluetoothDevice device) {
338 return mService.getConnectionState(device);
BluetoothGattServer.java 792 public int getConnectionState(BluetoothDevice device) {
793 throw new UnsupportedOperationException("Use BluetoothManager#getConnectionState instead.");
BluetoothMap.java 301 public int getConnectionState(BluetoothDevice device) {
302 if (DBG) log("getConnectionState(" + device + ")");
306 return mService.getConnectionState(device);
BluetoothMapClient.java 277 public int getConnectionState(BluetoothDevice device) {
278 if (DBG) Log.d(TAG, "getConnectionState(" + device + ")");
282 return mService.getConnectionState(device);
BluetoothPan.java 329 public int getConnectionState(BluetoothDevice device) {
334 return mPanService.getConnectionState(device);
BluetoothPbapClient.java 269 public int getConnectionState(BluetoothDevice device) {
271 log("getConnectionState(" + device + ")");
275 return mService.getConnectionState(device);
BluetoothSap.java 328 public int getConnectionState(BluetoothDevice device) {
329 if (DBG) log("getConnectionState(" + device + ")");
333 return mService.getConnectionState(device);
BluetoothA2dp.java 395 public int getConnectionState(BluetoothDevice device) {
401 return mService.getConnectionState(device);
BluetoothHealth.java 350 public int getConnectionState(BluetoothDevice device) {
BluetoothInputDevice.java 406 public int getConnectionState(BluetoothDevice device) {
410 return mService.getConnectionState(device);
BluetoothInputHost.java 321 public int getConnectionState(BluetoothDevice device) {
322 Log.v(TAG, "getConnectionState(): device=" + device);
326 return mService.getConnectionState(device);
BluetoothHeadset.java 475 public int getConnectionState(BluetoothDevice device) {
476 if (VDBG) log("getConnectionState(" + device + ")");
480 return mService.getConnectionState(device);
    [all...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
LocalBluetoothAdapter.java 130 public int getConnectionState() {
131 return mAdapter.getConnectionState();
  /packages/apps/Bluetooth/src/com/android/bluetooth/a2dpsink/
A2dpSinkService.java 127 int connectionState = mStateMachine.getConnectionState(device);
144 int connectionState = mStateMachine.getConnectionState(device);
164 int getConnectionState(BluetoothDevice device) {
166 return mStateMachine.getConnectionState(device);
292 public int getConnectionState(BluetoothDevice device) {
295 return service.getConnectionState(device);
  /packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/
MapClientService.java 103 connectionState = getConnectionState(device);
115 public synchronized int getConnectionState(BluetoothDevice device) {
239 return service.getConnectionState(device) == BluetoothProfile.STATE_CONNECTED;
270 public int getConnectionState(BluetoothDevice device) {
271 if (VDBG) Log.v(TAG, "getConnectionState()");
274 return service.getConnectionState(device);
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
HeadsetService.java 166 public int getConnectionState(BluetoothDevice device) {
169 return service.getConnectionState(device);
355 int connectionState = mStateMachine.getConnectionState(device);
368 int connectionState = mStateMachine.getConnectionState(device);
388 public int getConnectionState(BluetoothDevice device) {
390 return mStateMachine.getConnectionState(device);
411 int connectionState = mStateMachine.getConnectionState(device);
425 int connectionState = mStateMachine.getConnectionState(device);
506 int connectionState = mStateMachine.getConnectionState(device);
534 int connectionState = mStateMachine.getConnectionState(device)
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
PbapClientService.java 139 if (getConnectionState(device) == BluetoothProfile.STATE_CONNECTED) {
217 public int getConnectionState(BluetoothDevice device) {
222 return service.getConnectionState(device);
332 int currentDeviceState = stateMachineEntry.getValue().getConnectionState();
343 int getConnectionState(BluetoothDevice device) {
350 return pbapClientStateMachine.getConnectionState(device);
  /packages/services/Car/service/src/com/android/car/
BluetoothDevicesInfo.java 111 public int getConnectionState() {
277 state = devInfo.getConnectionState();
297 if (devInfo.getConnectionState() == BluetoothProfile.STATE_CONNECTED) {
  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
MediaRouteDescriptor.java 140 * @deprecated Use {@link #getConnectionState} instead
155 public int getConnectionState() {
320 result.append(", connectionState=").append(getConnectionState());
  /packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/
A2dpService.java 190 int connectionState = mStateMachine.getConnectionState(device);
203 int connectionState = mStateMachine.getConnectionState(device);
223 public int getConnectionState(BluetoothDevice device) {
225 return mStateMachine.getConnectionState(device);
388 public int getConnectionState(BluetoothDevice device) {
391 return service.getConnectionState(device);
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/
HeadsetClientService.java 248 public int getConnectionState(BluetoothDevice device) {
253 return service.getConnectionState(device);
509 int connectionState = sm.getConnectionState(device);
525 if (sm != null && sm.getConnectionState(bd) == BluetoothProfile.STATE_CONNECTED) {
538 if (sm != null && sm.getConnectionState(bd) == state) {
546 private synchronized int getConnectionState(BluetoothDevice device) {
550 return sm.getConnectionState(device);
637 int connectionState = sm.getConnectionState(device);
655 int connectionState = sm.getConnectionState(device);
674 int connectionState = sm.getConnectionState(device)
    [all...]

Completed in 718 milliseconds

1 2 3