Home
last modified time | relevance | path

Searched refs:AvrcpControllerStateMachine (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/avrcpcontroller/
DAvrcpControllerService.java97 protected Map<BluetoothDevice, AvrcpControllerStateMachine> mDeviceStateMap =
125 for (AvrcpControllerStateMachine stateMachine : mDeviceStateMap.values()) { in stop()
138 protected AvrcpControllerStateMachine newStateMachine(BluetoothDevice device) { in newStateMachine()
139 return new AvrcpControllerStateMachine(device, this); in newStateMachine()
146 AvrcpControllerStateMachine stateMachine = getStateMachine(node.mDevice); in refreshContents()
166 for (AvrcpControllerStateMachine stateMachine : mDeviceStateMap.values()) { in getContents()
297 AvrcpControllerStateMachine stateMachine = getOrCreateStateMachine(device); in onConnectionStateChanged()
321 AvrcpControllerStateMachine stateMachine = getStateMachine(device); in handleRegisterNotificationAbsVol()
324 AvrcpControllerStateMachine.MESSAGE_PROCESS_REGISTER_ABS_VOL_NOTIFICATION); in handleRegisterNotificationAbsVol()
334 AvrcpControllerStateMachine stateMachine = getStateMachine(device); in handleSetAbsVolume()
[all …]
DAvrcpControllerStateMachine.java49 class AvrcpControllerStateMachine extends StateMachine { class
119 AvrcpControllerStateMachine(BluetoothDevice device, AvrcpControllerService service) { in AvrcpControllerStateMachine() method in AvrcpControllerStateMachine
268 mService.removeStateMachine(AvrcpControllerStateMachine.this); in processMessage()
/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/avrcpcontroller/
DAvrcpControllerStateMachineTest.java62 private AvrcpControllerStateMachine mAvrcpControllerStateMachine;
75 AvrcpControllerStateMachine mAvrcpStateMachine;
100 mAvrcpStateMachine = new AvrcpControllerStateMachine(mTestDevice, mAvrcpControllerService); in setUp()
133 IsInstanceOf.instanceOf(AvrcpControllerStateMachine.Disconnected.class)); in testDisconnect()
158 IsInstanceOf.instanceOf(AvrcpControllerStateMachine.Disconnected.class)); in testControlOnly()
185 IsInstanceOf.instanceOf(AvrcpControllerStateMachine.Disconnected.class)); in testBrowsingOnly()
378 mAvrcpStateMachine.sendMessage(AvrcpControllerStateMachine.MESSAGE_PROCESS_GET_PLAYER_ITEMS, in testBrowsingCommands()
387 AvrcpControllerStateMachine.MESSAGE_PROCESS_GET_FOLDER_ITEMS_OUT_OF_RANGE); in testBrowsingCommands()
400 mAvrcpStateMachine.sendMessage(AvrcpControllerStateMachine.MESSAGE_PROCESS_FOLDER_PATH, 5); in testBrowsingCommands()
434 mAvrcpStateMachine.sendMessage(AvrcpControllerStateMachine.MESSAGE_PROCESS_GET_PLAYER_ITEMS, in testPlayerChanged()
[all …]