Home
last modified time | relevance | path

Searched defs:presetIndex (Results 1 – 9 of 9) sorted by relevance

/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/hap/
DHapClientNativeInterface.java140 public void selectActivePreset(BluetoothDevice device, int presetIndex) { in selectActivePreset()
141 selectActivePresetNative(getByteAddress(device), presetIndex); in selectActivePreset() local
151 public void groupSelectActivePreset(int groupId, int presetIndex) { in groupSelectActivePreset()
202 public void getPresetInfo(BluetoothDevice device, int presetIndex) { in getPresetInfo()
203 getPresetInfoNative(getByteAddress(device), presetIndex); in getPresetInfo() local
214 public void setPresetName(BluetoothDevice device, int presetIndex, String name) { in setPresetName()
215 setPresetNameNative(getByteAddress(device), presetIndex, name); in setPresetName() local
226 public void groupSetPresetName(int groupId, int presetIndex, String name) { in groupSetPresetName()
275 void onActivePresetSelected(byte[] address, int presetIndex) { in onActivePresetSelected()
288 void onActivePresetGroupSelected(int groupId, int presetIndex) { in onActivePresetGroupSelected()
[all …]
DHapClientService.java603 public void selectPreset(BluetoothDevice device, int presetIndex) { in selectPreset()
629 public void selectPresetForGroup(int groupId, int presetIndex) { in selectPresetForGroup()
700 public @Nullable BluetoothHapPresetInfo getPresetInfo(BluetoothDevice device, int presetIndex) { in getPresetInfo()
794 private void notifyActivePresetChanged(BluetoothDevice device, int presetIndex, in notifyActivePresetChanged()
810 private void notifyActivePresetChangedForGroup(int groupId, int presetIndex, int reasonCode) { in notifyActivePresetChangedForGroup()
898 private boolean isPresetIndexValid(BluetoothDevice device, int presetIndex) { in isPresetIndexValid()
912 private boolean isPresetIndexValid(int groupId, int presetIndex) { in isPresetIndexValid()
941 public void setPresetName(BluetoothDevice device, int presetIndex, String name) { in setPresetName()
970 public void setPresetNameForGroup(int groupId, int presetIndex, String name) { in setPresetNameForGroup()
1141 int presetIndex = stackEvent.valueInt1; in messageFromNative() local
[all …]
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/hap/
DHapClientNativeInterfaceTest.java96 int presetIndex = 0; in onActivePresetSelected() local
110 int presetIndex = 0; in onActivePresetGroupSelected() local
193 int presetIndex = 2; in onPresetNameSetError() local
209 int presetIndex = 2; in onGroupPresetNameSetError() local
225 int presetIndex = 2; in onPresetInfoError() local
241 int presetIndex = 2; in onGroupPresetInfoError() local
DHapClientTest.java658 int presetIndex = recv.awaitResultNoInterrupt(Duration.ofMillis(TIMEOUT_MS)) in testGetActivePresetIndex() local
/packages/modules/Bluetooth/system/binder/android/bluetooth/
DIBluetoothHapClient.aidl50 …oneway void selectPreset(in BluetoothDevice device, int presetIndex, in AttributionSource attribut… in selectPreset()
52 …oneway void selectPresetForGroup(int groupId, int presetIndex, in AttributionSource attributionSou… in selectPresetForGroup()
62 …void getPresetInfo(in BluetoothDevice device, int presetIndex, in AttributionSource attributionSou… in getPresetInfo()
68 …oneway void setPresetName(in BluetoothDevice device, int presetIndex, in String name, in Attributi… in setPresetName()
70 …oneway void setPresetNameForGroup(int groupId, int presetIndex, in String name, in AttributionSour… in setPresetNameForGroup()
DIBluetoothHapClientCallback.aidl30 void onPresetSelected(in BluetoothDevice device, in int presetIndex, in int reasonCode); in onPresetSelected()
/packages/modules/Bluetooth/framework/java/android/bluetooth/
DBluetoothHapClient.java134 void onPresetSelected(@NonNull BluetoothDevice device, int presetIndex, in onPresetSelected()
965 public void selectPreset(@NonNull BluetoothDevice device, int presetIndex) { in selectPreset()
1001 public void selectPresetForGroup(int groupId, int presetIndex) { in selectPresetForGroup()
1145 public BluetoothHapPresetInfo getPresetInfo(@NonNull BluetoothDevice device, int presetIndex) { in getPresetInfo()
1343 public void setPresetName(@NonNull BluetoothDevice device, int presetIndex, in setPresetName()
1379 public void setPresetNameForGroup(int groupId, int presetIndex, @NonNull String name) { in setPresetNameForGroup()
DBluetoothHapPresetInfo.java45 /*package*/ BluetoothHapPresetInfo(int presetIndex, @NonNull String presetName, in BluetoothHapPresetInfo()
/packages/apps/Settings/tests/robotests/src/com/android/settings/accessibility/
DCaptioningAppearancePreferenceControllerTest.java174 private String getSummaryCombo(int fontScaleIndex, int presetIndex) { in getSummaryCombo()