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

  /packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/a2dp/
A2dpStateMachineTest.java 53 private A2dpStateMachine mA2dpStateMachine;
78 mA2dpStateMachine = new A2dpStateMachine(mTestDevice, mA2dpService,
81 A2dpStateMachine.sConnectTimeoutMs = 1000; // 1s
126 mA2dpStateMachine.sendMessage(A2dpStateMachine.STACK_EVENT, connStCh);
133 IsInstanceOf.instanceOf(A2dpStateMachine.Disconnected.class));
148 mA2dpStateMachine.sendMessage(A2dpStateMachine.STACK_EVENT, connStCh);
159 IsInstanceOf.instanceOf(A2dpStateMachine.Connecting.class));
166 mA2dpStateMachine.sendMessage(A2dpStateMachine.STACK_EVENT, connCompletedEvent);
182 IsInstanceOf.instanceOf(A2dpStateMachine.Connected.class));
195 mA2dpStateMachine.sendMessage(A2dpStateMachine.CONNECT, mTestDevice)
    [all...]
A2dpServiceTest.java 101 A2dpStateMachine.sConnectTimeoutMs = TIMEOUT_MS; // 1s
387 verifyConnectionStateIntent(A2dpStateMachine.sConnectTimeoutMs * 2,
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/
A2dpService.java 75 private final ConcurrentMap<BluetoothDevice, A2dpStateMachine> mStateMachines =
195 for (A2dpStateMachine sm : mStateMachines.values()) {
266 A2dpStateMachine smConnect = getOrCreateStateMachine(device);
271 smConnect.sendMessage(A2dpStateMachine.CONNECT);
283 A2dpStateMachine sm = mStateMachines.get(device);
288 sm.sendMessage(A2dpStateMachine.DISCONNECT);
297 for (A2dpStateMachine sm : mStateMachines.values()) {
317 for (A2dpStateMachine sm : mStateMachines.values()) {
392 A2dpStateMachine sm = mStateMachines.get(device);
415 for (A2dpStateMachine sm : mStateMachines.values())
    [all...]
A2dpStateMachine.java 68 final class A2dpStateMachine extends StateMachine {
70 private static final String TAG = "A2dpStateMachine";
96 A2dpStateMachine(BluetoothDevice device, A2dpService a2dpService,
118 static A2dpStateMachine make(BluetoothDevice device, A2dpService a2dpService,
121 A2dpStateMachine a2dpSm = new A2dpStateMachine(device, a2dpService, a2dpNativeInterface,
    [all...]

Completed in 221 milliseconds