/packages/apps/Settings/tests/robotests/src/com/android/settings/development/bluetooth/ |
D | AbstractBluetoothDialogPreferenceControllerTest.java | 125 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()
|
D | BluetoothCodecDialogPreferenceControllerTest.java | 138 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()
|
D | AbstractBluetoothListPreferenceControllerTest.java | 163 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()
|
D | BluetoothCodecListPreferenceControllerTest.java | 191 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()
|
D | BluetoothQualityDialogPreferenceControllerTest.java | 129 when(mBluetoothA2dp.getCodecStatus(mActiveDevice)).thenReturn(mCodecStatus); in updateState_codeTypeIsLDAC_enablePreference() 143 when(mBluetoothA2dp.getCodecStatus(mActiveDevice)).thenReturn(mCodecStatus); in updateState_codeTypeAAC_disablePreference()
|
D | BluetoothSampleRateDialogPreferenceControllerTest.java | 113 when(mBluetoothA2dp.getCodecStatus( in writeConfigurationValues_selectDefault_setHighest() 151 when(mBluetoothA2dp.getCodecStatus( in getSelectableIndex_verifyList()
|
D | BluetoothChannelModeDialogPreferenceControllerTest.java | 109 when(mBluetoothA2dp.getCodecStatus(mActiveDevice)).thenReturn(mCodecStatus); in writeConfigurationValues_selectDefault_setHighest() 138 when(mBluetoothA2dp.getCodecStatus(mActiveDevice)).thenReturn(mCodecStatus); in getSelectableIndex_verifyList()
|
D | BluetoothBitPerSampleDialogPreferenceControllerTest.java | 109 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/ |
D | A2dpService.java | 612 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 …]
|
D | A2dpStateMachine.java | 705 BluetoothCodecStatus getCodecStatus() { in getCodecStatus() method in A2dpStateMachine
|
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/a2dp/ |
D | A2dpServiceBinderTest.java | 175 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/ |
D | AbstractBluetoothDialogPreferenceController.java | 165 bluetoothA2dp.getCodecStatus(activeDevice); in getCurrentCodecConfig() 188 final BluetoothCodecStatus codecStatus = bluetoothA2dp.getCodecStatus(bluetoothDevice); in getSelectableConfigs()
|
D | AbstractBluetoothListPreferenceController.java | 145 final BluetoothCodecStatus codecStatus = bluetoothA2dp.getCodecStatus(activeDevice); in getBluetoothCodecStatus()
|
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/le_audio/ |
D | LeAudioBinderTest.java | 399 public void getCodecStatus() { in getCodecStatus() method in LeAudioBinderTest 403 mBinder.getCodecStatus(groupId, source); in getCodecStatus() 404 verify(mLeAudioService).getCodecStatus(groupId); in getCodecStatus()
|
D | LeAudioServiceTest.java | 2284 BluetoothLeAudioCodecStatus codecStatus = mService.getCodecStatus(testGroupId); in testMessageFromNativeGroupCodecConfigChanged_OneDirectionOnly()
|
/packages/modules/Bluetooth/android/app/aidl/android/bluetooth/ |
D | IBluetoothA2dp.aidl | 57 …BluetoothCodecStatus getCodecStatus(in BluetoothDevice device, in AttributionSource attributionSou… in getCodecStatus() method
|
D | IBluetoothLeAudio.aidl | 59 BluetoothLeAudioCodecStatus getCodecStatus(in int groupId, in AttributionSource source); in getCodecStatus() method
|
/packages/apps/Settings/src/com/android/settings/development/ |
D | AbstractBluetoothA2dpPreferenceController.java | 209 BluetoothCodecStatus codecStatus = mBluetoothA2dp.getCodecStatus(bluetoothDevice); in getCodecConfig()
|
/packages/modules/Bluetooth/framework/java/android/bluetooth/ |
D | BluetoothA2dp.java | 741 public BluetoothCodecStatus getCodecStatus(@NonNull BluetoothDevice device) { in getCodecStatus() method in BluetoothA2dp 750 return service.getCodecStatus(device, mAttributionSource); in getCodecStatus()
|
D | BluetoothLeAudio.java | 1399 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/ |
D | A2dpReceiver.java | 412 codecStatus = mBluetoothA2dp.getCodecStatus(activeDevice); in getCodecValue()
|
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/le_audio/ |
D | LeAudioService.java | 1161 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/ |
D | system-current.txt | 8 …BLUETOOTH_PRIVILEGED}) public android.bluetooth.BluetoothCodecStatus getCodecStatus(@NonNull andro… 460 …on.BLUETOOTH_PRIVILEGED}) public android.bluetooth.BluetoothLeAudioCodecStatus getCodecStatus(int);
|
/packages/modules/Bluetooth/apex/hiddenapi/ |
D | hiddenapi-max-target-o-low-priority.txt | 1294 Landroid/bluetooth/IBluetoothA2dp$Stub$Proxy;->getCodecStatus(Landroid/bluetooth/BluetoothDevice;)L… 1333 Landroid/bluetooth/IBluetoothA2dp;->getCodecStatus(Landroid/bluetooth/BluetoothDevice;)Landroid/blu…
|