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.java601 public void selectPreset(BluetoothDevice device, int presetIndex) { in selectPreset()
627 public void selectPresetForGroup(int groupId, int presetIndex) { in selectPresetForGroup()
698 public @Nullable BluetoothHapPresetInfo getPresetInfo(BluetoothDevice device, int presetIndex) { in getPresetInfo()
792 private void notifyActivePresetChanged(BluetoothDevice device, int presetIndex, in notifyActivePresetChanged()
808 private void notifyActivePresetChangedForGroup(int groupId, int presetIndex, int reasonCode) { in notifyActivePresetChangedForGroup()
896 private boolean isPresetIndexValid(BluetoothDevice device, int presetIndex) { in isPresetIndexValid()
910 private boolean isPresetIndexValid(int groupId, int presetIndex) { in isPresetIndexValid()
939 public void setPresetName(BluetoothDevice device, int presetIndex, String name) { in setPresetName()
968 public void setPresetNameForGroup(int groupId, int presetIndex, String name) { in setPresetNameForGroup()
1139 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.java657 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.java98 void onPresetSelected(@NonNull BluetoothDevice device, int presetIndex, in onPresetSelected()
937 public void selectPreset(@NonNull BluetoothDevice device, int presetIndex) { in selectPreset()
973 public void selectPresetForGroup(int groupId, int presetIndex) { in selectPresetForGroup()
1117 int presetIndex) { in getPresetInfo()
1225 public void setPresetName(@NonNull BluetoothDevice device, int presetIndex, in setPresetName()
1261 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/
DCaptionAppearancePreferenceControllerTest.java174 private String getSummaryCombo(int fontScaleIndex, int presetIndex) { in getSummaryCombo()