HomeSort by relevance Sort by last modified time
    Searched refs:Disconnecting (Results 1 - 6 of 6) sorted by null

  /packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
PbapClientStateMachine.java 23 * (Connecting) (Disconnecting)
34 * Connecting + TIMEOUT -> Disconnecting
35 * Connecting + DISCONNECT -> Disconnecting
36 * Connected + DISCONNECT -> Disconnecting
37 * Disconnecting + DISCONNECTED -> (Safe) Disconnected
38 * Disconnecting + TIMEOUT -> (Force) Disconnected
39 * Disconnecting + CONNECT : Defer Message
115 mDisconnecting = new Disconnecting();
250 class Disconnecting extends State {
253 Log.d(TAG, "Enter Disconnecting: " + getCurrentMessage().what)
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/hearingaid/
HearingAidStateMachine.java 20 * - "Connecting" and "Disconnecting" are transient states until the
28 * (Connecting)<--->(Disconnecting)
35 * DISCONNECT request, the state machine transitions to "Disconnecting" state.
36 * - Similarly, if the state machine is in "Disconnecting" state and the remote device
40 * (Connecting) ---------------> (Disconnecting)
82 private Disconnecting mDisconnecting;
101 mDisconnecting = new Disconnecting();
226 Log.w(TAG, "Ignore HearingAid DISCONNECTING event: " + mDevice);
312 Log.w(TAG, "Connecting interrupted: device is disconnecting: " + mDevice);
323 class Disconnecting extends State
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/
A2dpStateMachine.java 20 * - "Connecting" and "Disconnecting" are transient states until the
28 * (Connecting)<--->(Disconnecting)
35 * DISCONNECT request, the state machine transitions to "Disconnecting" state.
36 * - Similarly, if the state machine is in "Disconnecting" state and the remote device
40 * (Connecting) ---------------> (Disconnecting)
84 private Disconnecting mDisconnecting;
106 mDisconnecting = new Disconnecting();
250 Log.w(TAG, "Ignore A2DP DISCONNECTING event: " + mDevice);
345 Log.w(TAG, "Connecting interrupted: device is disconnecting: " + mDevice);
356 class Disconnecting extends State
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/
MceStateMachine.java 23 * (Connecting) (Disconnecting)
33 * Connecting + TIMEOUT -> Disconnecting
35 * Connected + DISCONNECT -> Disconnecting
36 * Connected + CONNECT -> Disconnecting + Defer Message
37 * Disconnecting + DISCONNECTED -> (Safe) Disconnected
38 * Disconnecting + TIMEOUT -> (Force) Disconnected
39 * Disconnecting + DISCONNECT/CONNECT : Defer Message
140 mDisconnecting = new Disconnecting();
196 if (currentState.getClass() == Disconnecting.class) {
642 class Disconnecting extends State
    [all...]
  /packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/hfp/
HeadsetStateMachineTest.java 218 // Indicate disconnecting to test state machine, which should do nothing
307 * Test state transition from Disconnecting to Disconnected state via StackEvent.DISCONNECTED
329 * Test state transition from Disconnecting to Disconnected state via CONNECT_TIMEOUT
348 * Test state transition from Disconnecting to Connected state via StackEvent.SLC_CONNECTED
370 * Test state transition from Connected to Disconnecting state via DISCONNECT message
385 IsInstanceOf.instanceOf(HeadsetStateMachine.Disconnecting.class));
389 * Test state transition from Connected to Disconnecting state via StackEvent.DISCONNECTING
395 // Send StackEvent.DISCONNECTING message
407 IsInstanceOf.instanceOf(HeadsetStateMachine.Disconnecting.class))
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
HeadsetStateMachine.java 54 * (Connecting) (Disconnecting)
115 private final Disconnecting mDisconnecting = new Disconnecting();
335 // all transitions to disconnecting state should go through connected state
520 stateLogW("Ignore DISCONNECTING event");
680 stateLogW("Disconnecting");
695 class Disconnecting extends HeadsetStateBase {
    [all...]

Completed in 120 milliseconds