Home
last modified time | relevance | path

Searched refs:setCodecConfigPreference (Results 1 – 20 of 20) sorted by relevance

/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/a2dp/
DA2dpCodecConfigTest.java183 doReturn(true).when(mA2dpNativeInterface).setCodecConfigPreference( in setUp()
625 verify(mA2dpNativeInterface, times(0)).setCodecConfigPreference(mTestDevice, in testDisableOptionalCodecs()
636 .setCodecConfigPreference(mTestDevice, codecConfigsArray); in testDisableOptionalCodecs()
658 .setCodecConfigPreference(mTestDevice, codecConfigsArray); in testEnableOptionalCodecs()
667 .setCodecConfigPreference(mTestDevice, codecConfigsArray); in testEnableOptionalCodecs()
743 mA2dpCodecConfig.setCodecConfigPreference(mTestDevice, in testCodecParametersChangeHelper()
747 verify(mA2dpNativeInterface, times(0)).setCodecConfigPreference(mTestDevice, in testCodecParametersChangeHelper()
769 mA2dpCodecConfig.setCodecConfigPreference(mTestDevice, in testCodecParametersChangeHelper()
773 .setCodecConfigPreference(mTestDevice, newCodecConfigsArray); in testCodecParametersChangeHelper()
779 mA2dpCodecConfig.setCodecConfigPreference(mTestDevice, in testCodecParametersChangeHelper()
[all …]
DA2dpServiceBinderTest.java202 public void setCodecConfigPreference() { in setCodecConfigPreference() method in A2dpServiceBinderTest
207 mBinder.setCodecConfigPreference(device, config, source); in setCodecConfigPreference()
208 verify(mService).setCodecConfigPreference(device, config); in setCodecConfigPreference()
DA2dpServiceTest.java975 doReturn(true).when(mA2dpNativeInterface).setCodecConfigPreference( in connectDeviceWithCodecStatus()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/a2dp/
DA2dpCodecConfig.java84 void setCodecConfigPreference(BluetoothDevice device, in setCodecConfigPreference() method in A2dpCodecConfig
118 mA2dpNativeInterface.setCodecConfigPreference(device, codecConfigArray); in setCodecConfigPreference()
141 mA2dpNativeInterface.setCodecConfigPreference(device, codecConfigArray); in enableOptionalCodecs()
163 mA2dpNativeInterface.setCodecConfigPreference(device, codecConfigArray); in disableOptionalCodecs()
329 mA2dpNativeInterface.setCodecConfigPreference(device, codecConfigArray); in switchCodecByBufferSize()
DA2dpNativeInterface.java146 public boolean setCodecConfigPreference(BluetoothDevice device, in setCodecConfigPreference() method in A2dpNativeInterface
DA2dpService.java766 public void setCodecConfigPreference(BluetoothDevice device, in setCodecConfigPreference() method in A2dpService
788 mA2dpCodecConfig.setCodecConfigPreference(device, codecStatus, codecConfig); in setCodecConfigPreference()
1489 public void setCodecConfigPreference(BluetoothDevice device, in setCodecConfigPreference() method in A2dpService.BluetoothA2dpBinder
1499 service.setCodecConfigPreference(device, codecConfig); in setCodecConfigPreference()
/packages/apps/Settings/tests/robotests/src/com/android/settings/development/
DAbstractBluetoothA2dpPreferenceControllerTest.java78 doNothing().when(mController).setCodecConfigPreference(any(), any()); in setup()
91 verify(mController).setCodecConfigPreference(any(), any()); in onPreferenceChange_bluetoothConnected_shouldUpdateCodec()
100 verify(mController, never()).setCodecConfigPreference(any(), any()); in onPreferenceChange_bluetoothNotConnected_shouldNotUpdateCodec()
/packages/apps/Settings/src/com/android/settings/development/
DAbstractBluetoothA2dpPreferenceController.java98 setCodecConfigPreference(activeDevice, codecConfig); in onPreferenceChange()
191 void setCodecConfigPreference(BluetoothDevice device, in setCodecConfigPreference() method in AbstractBluetoothA2dpPreferenceController
198 mBluetoothA2dp.setCodecConfigPreference(bluetoothDevice, config); in setCodecConfigPreference()
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/le_audio/
DLeAudioBinderTest.java406 public void setCodecConfigPreference() { in setCodecConfigPreference() method in LeAudioBinderTest
414 mBinder.setCodecConfigPreference(groupId, inputConfig, outputConfig, source); in setCodecConfigPreference()
415 verify(mMockService).setCodecConfigPreference(groupId, inputConfig, outputConfig); in setCodecConfigPreference()
/packages/modules/Bluetooth/system/binder/android/bluetooth/
DIBluetoothA2dp.aidl60 …oneway void setCodecConfigPreference(in BluetoothDevice device, in BluetoothCodecConfig codecConfi… in setCodecConfigPreference() method
DIBluetoothLeAudio.aidl62 …void setCodecConfigPreference(in int groupId, in BluetoothLeAudioCodecConfig inputCodecConfig, in … in setCodecConfigPreference() method
/packages/apps/Settings/src/com/android/settings/development/bluetooth/
DAbstractBluetoothDialogPreferenceController.java92 bluetoothA2dp.setCodecConfigPreference(activeDevice, codecConfig); in onIndexUpdated()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/le_audio/
DLeAudioNativeInterface.java301 public void setCodecConfigPreference(int groupId, in setCodecConfigPreference() method in LeAudioNativeInterface
DLeAudioService.java2954 public void setCodecConfigPreference(int groupId, in setCodecConfigPreference() method in LeAudioService
2992 mLeAudioNativeInterface.setCodecConfigPreference( in setCodecConfigPreference()
3722 public void setCodecConfigPreference(int groupId, in setCodecConfigPreference() method in LeAudioService.BluetoothLeAudioBinder
3732 service.setCodecConfigPreference(groupId, inputCodecConfig, outputCodecConfig); in setCodecConfigPreference()
/packages/apps/Settings/tests/robotests/src/com/android/settings/development/bluetooth/
DAbstractBluetoothDialogPreferenceControllerTest.java132 verify(mBluetoothA2dp).setCodecConfigPreference( in onIndexUpdated_checkFlow()
/packages/modules/Bluetooth/framework/java/android/bluetooth/
DBluetoothA2dp.java828 public void setCodecConfigPreference(@NonNull BluetoothDevice device, in setCodecConfigPreference() method in BluetoothA2dp
842 service.setCodecConfigPreference(device, codecConfig, mAttributionSource); in setCodecConfigPreference()
DBluetoothLeAudio.java1459 public void setCodecConfigPreference(int groupId, in setCodecConfigPreference() method in BluetoothLeAudio
1475 service.setCodecConfigPreference(groupId, inputCodecConfig, outputCodecConfig, in setCodecConfigPreference()
/packages/apps/Test/connectivity/PMC/src/com/android/pmc/
DA2dpReceiver.java487 mBluetoothA2dp.setCodecConfigPreference(getA2dpActiveDevice(), codecConfig); in setCodecValue()
/packages/modules/Bluetooth/framework/api/
Dsystem-current.txt15 … android.Manifest.permission.BLUETOOTH_PRIVILEGED}) public void setCodecConfigPreference(@NonNull …
417 … android.Manifest.permission.BLUETOOTH_PRIVILEGED}) public void setCodecConfigPreference(int, @Non…
/packages/modules/Bluetooth/apex/hiddenapi/
Dhiddenapi-max-target-o-low-priority.txt1306 Landroid/bluetooth/IBluetoothA2dp$Stub$Proxy;->setCodecConfigPreference(Landroid/bluetooth/Bluetoot…
1339 Landroid/bluetooth/IBluetoothA2dp;->setCodecConfigPreference(Landroid/bluetooth/BluetoothDevice;Lan…