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

1 2 3 4

  /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 95 public int getConnectionState(BluetoothDevice device, int profile) {
96 if (DBG) Log.d(TAG,"getConnectionState()");
BluetoothProfile.java 219 public int getConnectionState(BluetoothDevice device);
BluetoothA2dpSink.java 335 public int getConnectionState(BluetoothDevice device) {
340 return service.getConnectionState(device);
BluetoothAvrcpController.java 215 public int getConnectionState(BluetoothDevice device) {
220 return service.getConnectionState(device);
BluetoothGattServer.java 792 public int getConnectionState(BluetoothDevice device) {
793 throw new UnsupportedOperationException("Use BluetoothManager#getConnectionState instead.");
BluetoothMap.java 315 public int getConnectionState(BluetoothDevice device) {
316 if (DBG) log("getConnectionState(" + device + ")");
320 return service.getConnectionState(device);
BluetoothMapClient.java 281 public int getConnectionState(BluetoothDevice device) {
282 if (DBG) Log.d(TAG, "getConnectionState(" + device + ")");
286 return service.getConnectionState(device);
BluetoothPan.java 331 public int getConnectionState(BluetoothDevice device) {
336 return service.getConnectionState(device);
BluetoothPbapClient.java 274 public int getConnectionState(BluetoothDevice device) {
276 log("getConnectionState(" + device + ")");
281 return service.getConnectionState(device);
BluetoothSap.java 338 public int getConnectionState(BluetoothDevice device) {
339 if (DBG) log("getConnectionState(" + device + ")");
343 return service.getConnectionState(device);
BluetoothA2dp.java 395 public int getConnectionState(BluetoothDevice device) {
401 return mService.getConnectionState(device);
BluetoothHealth.java 352 public int getConnectionState(BluetoothDevice device) {
BluetoothInputDevice.java 421 public int getConnectionState(BluetoothDevice device) {
426 return service.getConnectionState(device);
BluetoothHeadset.java 507 public int getConnectionState(BluetoothDevice device) {
508 if (VDBG) log("getConnectionState(" + device + ")");
512 return service.getConnectionState(device);
    [all...]
BluetoothInputHost.java 317 public int getConnectionState(BluetoothDevice device) {
318 Log.v(TAG, "getConnectionState(): device=" + device);
323 return service.getConnectionState(device);
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
LocalBluetoothAdapter.java 134 public int getConnectionState() {
135 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);
360 int connectionState = mStateMachine.getConnectionState(device);
375 int connectionState = mStateMachine.getConnectionState(device);
397 public int getConnectionState(BluetoothDevice device) {
399 return mStateMachine.getConnectionState(device);
420 int connectionState = mStateMachine.getConnectionState(device);
434 int connectionState = mStateMachine.getConnectionState(device);
519 int connectionState = mStateMachine.getConnectionState(device);
547 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);
  /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 199 int connectionState = mStateMachine.getConnectionState(device);
212 int connectionState = mStateMachine.getConnectionState(device);
232 public int getConnectionState(BluetoothDevice device) {
234 return mStateMachine.getConnectionState(device);
397 public int getConnectionState(BluetoothDevice device) {
400 return service.getConnectionState(device);
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/
HeadsetClientService.java 262 public int getConnectionState(BluetoothDevice device) {
267 return service.getConnectionState(device);
523 int connectionState = sm.getConnectionState(device);
539 if (sm != null && sm.getConnectionState(bd) == BluetoothProfile.STATE_CONNECTED) {
552 if (sm != null && sm.getConnectionState(bd) == state) {
560 private synchronized int getConnectionState(BluetoothDevice device) {
564 return sm.getConnectionState(device);
651 int connectionState = sm.getConnectionState(device);
670 int connectionState = entry.getValue().getConnectionState(entry.getKey());
688 int connectionState = sm.getConnectionState(device)
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/hid/
HidDevService.java 369 public int getConnectionState(BluetoothDevice device) {
370 if (DBG) Log.v(TAG, "getConnectionState(): device=" + device);
377 return service.getConnectionState(device);
535 int getConnectionState(BluetoothDevice device) {

Completed in 313 milliseconds

1 2 3 4