Home
last modified time | relevance | path

Searched refs:btAvrcpAttributeList (Results 1 – 2 of 2) sorted by relevance

/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/avrcpcontroller/
DPlayerApplicationSettingsTest.java35 byte[] btAvrcpAttributeList = new byte[3]; in makeSupportedSettings()
36 btAvrcpAttributeList[0] = PlayerApplicationSettings.REPEAT_STATUS; in makeSupportedSettings()
37 btAvrcpAttributeList[1] = 1; in makeSupportedSettings()
38 btAvrcpAttributeList[2] = PlayerApplicationSettings.JNI_REPEAT_STATUS_ALL_TRACK_REPEAT; in makeSupportedSettings()
41 PlayerApplicationSettings.makeSupportedSettings(btAvrcpAttributeList); in makeSupportedSettings()
48 byte[] btAvrcpAttributeList = new byte[2]; in makeSettings()
49 btAvrcpAttributeList[0] = PlayerApplicationSettings.REPEAT_STATUS; in makeSettings()
50 btAvrcpAttributeList[1] = PlayerApplicationSettings.JNI_REPEAT_STATUS_GROUP_REPEAT; in makeSettings()
53 PlayerApplicationSettings.makeSettings(btAvrcpAttributeList); in makeSettings()
61 byte[] btAvrcpAttributeList = new byte[2]; in setSupport()
[all …]
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/avrcpcontroller/
DPlayerApplicationSettings.java64 static PlayerApplicationSettings makeSupportedSettings(byte[] btAvrcpAttributeList) { in makeSupportedSettings() argument
67 for (int i = 0; i < btAvrcpAttributeList.length; ) { in makeSupportedSettings()
68 byte attrId = btAvrcpAttributeList[i++]; in makeSupportedSettings()
69 byte numSupportedVals = btAvrcpAttributeList[i++]; in makeSupportedSettings()
75 mapAttribIdValtoAvrcpPlayerSetting(attrId, btAvrcpAttributeList[i++])); in makeSupportedSettings()
85 static PlayerApplicationSettings makeSettings(byte[] btAvrcpAttributeList) { in makeSettings() argument
88 for (int i = 0; i < btAvrcpAttributeList.length; ) { in makeSettings()
89 byte attrId = btAvrcpAttributeList[i++]; in makeSettings()
93 mapAttribIdValtoAvrcpPlayerSetting(attrId, btAvrcpAttributeList[i++])); in makeSettings()