Home
last modified time | relevance | path

Searched refs:getCodecStatus (Results 1 – 24 of 24) sorted by relevance

/packages/apps/Settings/tests/robotests/src/com/android/settings/development/bluetooth/
DAbstractBluetoothDialogPreferenceControllerTest.java125 when(mBluetoothA2dp.getCodecStatus( in onIndexUpdated_checkFlow()
158 when(mBluetoothA2dp.getCodecStatus(mActiveDevice)).thenReturn(null); in getCurrentCodecConfig_errorChecking()
165 when(mBluetoothA2dp.getCodecStatus( in getCurrentCodecConfig_verifyConfig()
178 when(mBluetoothA2dp.getCodecStatus( in getSelectableConfigs_verifyConfig()
191 when(mBluetoothA2dp.getCodecStatus( in getSelectableByCodecType_verifyConfig()
205 when(mBluetoothA2dp.getCodecStatus( in getSelectableByCodecType_unavailable()
219 when(mBluetoothA2dp.getCodecStatus( in onBluetoothServiceConnected_verifyBluetoothA2dpConfigStore()
DBluetoothCodecDialogPreferenceControllerTest.java138 when(mBluetoothA2dp.getCodecStatus(mActiveDevice)).thenReturn(mCodecStatus); in writeConfigurationValues_selectDefault_setHighest()
156 when(mBluetoothA2dp.getCodecStatus(mActiveDevice)).thenReturn(mCodecStatus); in writeConfigurationValues_checkCodec()
189 when(mBluetoothA2dp.getCodecStatus(mActiveDevice)).thenReturn(mCodecStatus); in writeConfigurationValues_resetHighestConfig()
232 when(mBluetoothA2dp.getCodecStatus(mActiveDevice)).thenReturn(mCodecStatus); in onHDAudioEnabled_optionalCodecEnabled_setsCodecTypeAsOpus()
251 when(mBluetoothA2dp.getCodecStatus(mActiveDevice)).thenReturn(mCodecStatus); in onHDAudioEnabled_optionalCodecEnabled_setsCodecTypeAsAAC()
269 when(mBluetoothA2dp.getCodecStatus(mActiveDevice)).thenReturn(mCodecStatus); in onHDAudioEnabled_optionalCodecDisabled_setsCodecTypeAsSBC()
DAbstractBluetoothListPreferenceControllerTest.java163 when(mBluetoothA2dp.getCodecStatus(mActiveDevice)).thenReturn(null); in getBluetoothCodecStatus_errorChecking()
173 when(mBluetoothA2dp.getCodecStatus(mActiveDevice)).thenReturn(null); in getCurrentCodecConfig_errorChecking()
180 when(mBluetoothA2dp.getCodecStatus(mActiveDevice)).thenReturn(mCodecStatus); in getCurrentCodecConfig_verifyConfig()
212 when(mBluetoothA2dp.getCodecStatus(mActiveDevice)).thenReturn(mCodecStatus); in onBluetoothServiceConnected_verifyBluetoothA2dpConfigStore()
DBluetoothCodecListPreferenceControllerTest.java191 when(mBluetoothA2dp.getCodecStatus(mActiveDevice)).thenReturn(mCodecStatus); in writeConfigurationValues_selectDefault()
208 when(mBluetoothA2dp.getCodecStatus(mActiveDevice)).thenReturn(mCodecStatus); in writeConfigurationValues_checkCodec()
234 when(mBluetoothA2dp.getCodecStatus(mActiveDevice)).thenReturn(mCodecStatus); in writeConfigurationValues_chooseHighestConfig()
DBluetoothQualityDialogPreferenceControllerTest.java129 when(mBluetoothA2dp.getCodecStatus(mActiveDevice)).thenReturn(mCodecStatus); in updateState_codeTypeIsLDAC_enablePreference()
143 when(mBluetoothA2dp.getCodecStatus(mActiveDevice)).thenReturn(mCodecStatus); in updateState_codeTypeAAC_disablePreference()
DBluetoothSampleRateDialogPreferenceControllerTest.java113 when(mBluetoothA2dp.getCodecStatus( in writeConfigurationValues_selectDefault_setHighest()
151 when(mBluetoothA2dp.getCodecStatus( in getSelectableIndex_verifyList()
DBluetoothChannelModeDialogPreferenceControllerTest.java109 when(mBluetoothA2dp.getCodecStatus(mActiveDevice)).thenReturn(mCodecStatus); in writeConfigurationValues_selectDefault_setHighest()
138 when(mBluetoothA2dp.getCodecStatus(mActiveDevice)).thenReturn(mCodecStatus); in getSelectableIndex_verifyList()
DBluetoothBitPerSampleDialogPreferenceControllerTest.java109 when(mBluetoothA2dp.getCodecStatus(mActiveDevice)).thenReturn(mCodecStatus); in writeConfigurationValues_selectDefault_setHighest()
141 when(mBluetoothA2dp.getCodecStatus(mActiveDevice)).thenReturn(mCodecStatus); in getSelectableIndex_verifyList()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/a2dp/
DA2dpService.java612 BluetoothCodecStatus codecStatus = sm.getCodecStatus(); in setActiveDevice()
733 public BluetoothCodecStatus getCodecStatus(BluetoothDevice device) { in getCodecStatus() method in A2dpService
744 return sm.getCodecStatus(); in getCodecStatus()
770 BluetoothCodecStatus codecStatus = getCodecStatus(device); in setCodecConfigPreference()
797 BluetoothCodecStatus codecStatus = getCodecStatus(device); in enableOptionalCodecs()
825 BluetoothCodecStatus codecStatus = getCodecStatus(device); in disableOptionalCodecs()
1246 BluetoothCodecStatus codecStatus = sm.getCodecStatus(); in updateOptionalCodecsSupport()
1299 BluetoothCodecStatus codecStatus = sm.getCodecStatus(); in updateLowLatencyAudioSupport()
1540 public BluetoothCodecStatus getCodecStatus( in getCodecStatus() method in A2dpService.BluetoothA2dpBinder
1547 return service.getCodecStatus(device); in getCodecStatus()
[all …]
DA2dpStateMachine.java705 BluetoothCodecStatus getCodecStatus() { in getCodecStatus() method in A2dpStateMachine
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/a2dp/
DA2dpServiceBinderTest.java175 public void getCodecStatus() { in getCodecStatus() method in A2dpServiceBinderTest
176 mBinder.getCodecStatus(sDevice, sSource); in getCodecStatus()
177 verify(mA2dpService).getCodecStatus(sDevice); in getCodecStatus()
/packages/apps/Settings/src/com/android/settings/development/bluetooth/
DAbstractBluetoothDialogPreferenceController.java165 bluetoothA2dp.getCodecStatus(activeDevice); in getCurrentCodecConfig()
188 final BluetoothCodecStatus codecStatus = bluetoothA2dp.getCodecStatus(bluetoothDevice); in getSelectableConfigs()
DAbstractBluetoothListPreferenceController.java145 final BluetoothCodecStatus codecStatus = bluetoothA2dp.getCodecStatus(activeDevice); in getBluetoothCodecStatus()
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/le_audio/
DLeAudioBinderTest.java399 public void getCodecStatus() { in getCodecStatus() method in LeAudioBinderTest
403 mBinder.getCodecStatus(groupId, source); in getCodecStatus()
404 verify(mLeAudioService).getCodecStatus(groupId); in getCodecStatus()
DLeAudioServiceTest.java2284 BluetoothLeAudioCodecStatus codecStatus = mService.getCodecStatus(testGroupId); in testMessageFromNativeGroupCodecConfigChanged_OneDirectionOnly()
/packages/modules/Bluetooth/android/app/aidl/android/bluetooth/
DIBluetoothA2dp.aidl57 …BluetoothCodecStatus getCodecStatus(in BluetoothDevice device, in AttributionSource attributionSou… in getCodecStatus() method
DIBluetoothLeAudio.aidl59 BluetoothLeAudioCodecStatus getCodecStatus(in int groupId, in AttributionSource source); in getCodecStatus() method
/packages/apps/Settings/src/com/android/settings/development/
DAbstractBluetoothA2dpPreferenceController.java209 BluetoothCodecStatus codecStatus = mBluetoothA2dp.getCodecStatus(bluetoothDevice); in getCodecConfig()
/packages/modules/Bluetooth/framework/java/android/bluetooth/
DBluetoothA2dp.java741 public BluetoothCodecStatus getCodecStatus(@NonNull BluetoothDevice device) { in getCodecStatus() method in BluetoothA2dp
750 return service.getCodecStatus(device, mAttributionSource); in getCodecStatus()
DBluetoothLeAudio.java1399 public BluetoothLeAudioCodecStatus getCodecStatus(int groupId) { in getCodecStatus() method in BluetoothLeAudio
1411 return service.getCodecStatus(groupId, mAttributionSource); in getCodecStatus()
/packages/apps/Test/connectivity/PMC/src/com/android/pmc/
DA2dpReceiver.java412 codecStatus = mBluetoothA2dp.getCodecStatus(activeDevice); in getCodecValue()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/le_audio/
DLeAudioService.java1161 BluetoothLeAudioCodecStatus codecStatus = getCodecStatus(groupId); in getBroadcastAudioQualityPerSinkCapabilities()
4717 public BluetoothLeAudioCodecStatus getCodecStatus(int groupId) { in getCodecStatus() method in LeAudioService
5372 public BluetoothLeAudioCodecStatus getCodecStatus(int groupId, AttributionSource source) { in getCodecStatus() method in LeAudioService.BluetoothLeAudioBinder
5379 return service.getCodecStatus(groupId); in getCodecStatus()
/packages/modules/Bluetooth/framework/api/
Dsystem-current.txt8 …BLUETOOTH_PRIVILEGED}) public android.bluetooth.BluetoothCodecStatus getCodecStatus(@NonNull andro…
460 …on.BLUETOOTH_PRIVILEGED}) public android.bluetooth.BluetoothLeAudioCodecStatus getCodecStatus(int);
/packages/modules/Bluetooth/apex/hiddenapi/
Dhiddenapi-max-target-o-low-priority.txt1294 Landroid/bluetooth/IBluetoothA2dp$Stub$Proxy;->getCodecStatus(Landroid/bluetooth/BluetoothDevice;)L…
1333 Landroid/bluetooth/IBluetoothA2dp;->getCodecStatus(Landroid/bluetooth/BluetoothDevice;)Landroid/blu…