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

1 2 3 4

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
BluetoothController.java 43 public static int STATE_CONNECTED = 2;
54 if (state == STATE_CONNECTED) return "STATE_CONNECTED";
CastController.java 37 public static final int STATE_CONNECTED = 2;
  /frameworks/base/core/java/android/bluetooth/
BluetoothProfile.java 53 public static final int STATE_CONNECTED = 2;
154 * <p> Return the set of devices which are in state {@link #STATE_CONNECTED}
172 * {@link #STATE_CONNECTED}, {@link #STATE_CONNECTING},
185 * {@link #STATE_CONNECTED}, {@link #STATE_CONNECTING},
BluetoothManager.java 88 * {@link BluetoothProfile#STATE_CONNECTED}, {@link BluetoothProfile#STATE_CONNECTING},
98 return BluetoothProfile.STATE_CONNECTED;
108 * <p> Return the set of devices which are in state {@link BluetoothProfile#STATE_CONNECTED}
134 new int[] { BluetoothProfile.STATE_CONNECTED });
159 * {@link BluetoothProfile#STATE_CONNECTED}, {@link BluetoothProfile#STATE_CONNECTING},
  /frameworks/base/core/java/com/android/internal/net/
LegacyVpnInfo.java 37 public static final int STATE_CONNECTED = 3;
83 return STATE_CONNECTED;
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/
HeadsetClientService.java 448 if (connectionState == BluetoothProfile.STATE_CONNECTED ||
461 if (connectionState != BluetoothProfile.STATE_CONNECTED &&
510 if (connectionState != BluetoothProfile.STATE_CONNECTED &&
521 // But since we allow startVoiceRecognition in STATE_CONNECTED and
524 if (connectionState != BluetoothProfile.STATE_CONNECTED &&
570 if (connectionState != BluetoothProfile.STATE_CONNECTED &&
582 if (connectionState != BluetoothProfile.STATE_CONNECTED &&
595 if (connectionState != BluetoothProfile.STATE_CONNECTED &&
608 if (connectionState != BluetoothProfile.STATE_CONNECTED &&
622 if (connectionState != BluetoothProfile.STATE_CONNECTED &
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/avrcp/
AvrcpControllerService.java 143 if (states[i] == BluetoothProfile.STATE_CONNECTED) {
152 return (mConnectedDevices.contains(device) ? BluetoothProfile.STATE_CONNECTED
243 int oldState = (mConnectedDevices.contains(device) ? BluetoothProfile.STATE_CONNECTED
245 int newState = (connected ? BluetoothProfile.STATE_CONNECTED
254 } else if (!connected && oldState == BluetoothProfile.STATE_CONNECTED) {
  /packages/apps/Settings/src/com/android/settings/bluetooth/
A2dpProfile.java 72 device.onProfileStateChanged(A2dpProfile.this, BluetoothProfile.STATE_CONNECTED);
109 new int[] {BluetoothProfile.STATE_CONNECTED,
190 case BluetoothProfile.STATE_CONNECTED:
HidProfile.java 67 device.onProfileStateChanged(HidProfile.this, BluetoothProfile.STATE_CONNECTED);
162 case BluetoothProfile.STATE_CONNECTED:
PanProfile.java 110 return getConnectionStatus(device) == BluetoothProfile.STATE_CONNECTED;
143 case BluetoothProfile.STATE_CONNECTED:
PbapServerProfile.java 104 return BluetoothProfile.STATE_CONNECTED;
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
AdapterProperties.java 376 state == BluetoothProfile.STATE_CONNECTED ||
387 case BluetoothProfile.STATE_CONNECTED:
388 return BluetoothAdapter.STATE_CONNECTED;
402 case BluetoothProfile.STATE_CONNECTED:
416 case BluetoothProfile.STATE_CONNECTED:
459 } else if (newState == BluetoothProfile.STATE_CONNECTED ||
461 currHashState != BluetoothProfile.STATE_CONNECTED)) {
468 if (currHashState == BluetoothProfile.STATE_CONNECTED ||
  /external/chromium_org/third_party/webrtc/base/
testclient.h 48 return CheckConnState(AsyncPacketSocket::STATE_CONNECTED);
asyncpacketsocket.h 75 STATE_CONNECTED
  /sdk/emulator/opengl/tests/event_injector/
emulator-console.c 38 STATE_CONNECTED,
104 if (con->state != STATE_CONNECTED) {
143 con->state = STATE_CONNECTED;
251 case STATE_CONNECTED:
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BluetoothChatService.java 81 public static final int STATE_CONNECTED = 3; // now connected to a remote device
196 setState(STATE_CONNECTED);
237 if (mState != STATE_CONNECTED) return;
303 while (mState != STATE_CONNECTED) {
324 case STATE_CONNECTED:
  /developers/build/prebuilts/gradle/BluetoothChat/Application/src/main/java/com/example/android/bluetoothchat/
BluetoothChatService.java 68 public static final int STATE_CONNECTED = 3; // now connected to a remote device
206 setState(STATE_CONNECTED);
248 if (mState != STATE_CONNECTED) return;
322 while (mState != STATE_CONNECTED) {
343 case STATE_CONNECTED:
  /developers/samples/android/connectivity/bluetooth/BluetoothChat/Application/src/main/java/com/example/android/bluetoothchat/
BluetoothChatService.java 68 public static final int STATE_CONNECTED = 3; // now connected to a remote device
206 setState(STATE_CONNECTED);
248 if (mState != STATE_CONNECTED) return;
322 while (mState != STATE_CONNECTED) {
343 case STATE_CONNECTED:
  /development/samples/BluetoothChat/src/com/example/android/BluetoothChat/
BluetoothChatService.java 68 public static final int STATE_CONNECTED = 3; // now connected to a remote device
182 setState(STATE_CONNECTED);
223 if (mState != STATE_CONNECTED) return;
297 while (mState != STATE_CONNECTED) {
318 case STATE_CONNECTED:
  /development/samples/browseable/BluetoothChat/src/com.example.android.bluetoothchat/
BluetoothChatService.java 68 public static final int STATE_CONNECTED = 3; // now connected to a remote device
206 setState(STATE_CONNECTED);
248 if (mState != STATE_CONNECTED) return;
322 while (mState != STATE_CONNECTED) {
343 case STATE_CONNECTED:
  /external/qemu/android/
hw-pipe-net.c 61 STATE_CONNECTED,
98 if (pipe->state == STATE_CONNECTED && (pipe->wakeWanted & PIPE_WAKE_READ) != 0) {
157 pipe->state = STATE_CONNECTED;
217 pipe->state = STATE_CONNECTED;
238 if (pipe->state == STATE_CONNECTED)
  /packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/
A2dpSinkStateMachine.java 260 broadcastConnectionState(device, BluetoothProfile.STATE_CONNECTED,
394 broadcastConnectionState(mCurrentDevice, BluetoothProfile.STATE_CONNECTED,
405 broadcastConnectionState(mTargetDevice, BluetoothProfile.STATE_CONNECTED,
413 broadcastConnectionState(mIncomingDevice, BluetoothProfile.STATE_CONNECTED,
423 broadcastConnectionState(device, BluetoothProfile.STATE_CONNECTED,
520 BluetoothProfile.STATE_CONNECTED);
522 broadcastConnectionState(device, BluetoothProfile.STATE_CONNECTED,
559 BluetoothProfile.STATE_CONNECTED);
623 return BluetoothProfile.STATE_CONNECTED;
    [all...]
A2dpStateMachine.java 245 broadcastConnectionState(device, BluetoothProfile.STATE_CONNECTED,
375 broadcastConnectionState(mCurrentDevice, BluetoothProfile.STATE_CONNECTED,
386 broadcastConnectionState(mTargetDevice, BluetoothProfile.STATE_CONNECTED,
394 broadcastConnectionState(mIncomingDevice, BluetoothProfile.STATE_CONNECTED,
404 broadcastConnectionState(device, BluetoothProfile.STATE_CONNECTED,
501 BluetoothProfile.STATE_CONNECTED);
503 broadcastConnectionState(device, BluetoothProfile.STATE_CONNECTED,
536 BluetoothProfile.STATE_CONNECTED);
603 return BluetoothProfile.STATE_CONNECTED;
    [all...]
A2dpSinkService.java 109 if (connectionState == BluetoothProfile.STATE_CONNECTED ||
122 if (connectionState != BluetoothProfile.STATE_CONNECTED &&
  /packages/apps/Nfc/src/com/android/nfc/handover/
BluetoothPeripheralHandover.java 328 != BluetoothProfile.STATE_CONNECTED) {
338 BluetoothProfile.STATE_CONNECTED) {
344 if (mA2dp.getConnectionState(mDevice) != BluetoothProfile.STATE_CONNECTED) {
421 if (state == BluetoothProfile.STATE_CONNECTED) {
431 if (state == BluetoothProfile.STATE_CONNECTED) {
441 if (state == BluetoothProfile.STATE_CONNECTED) {

Completed in 514 milliseconds

1 2 3 4