/aosp12/packages/apps/Settings/tests/robotests/src/com/android/settings/development/bluetooth/ |
H A D | AbstractBluetoothDialogPreferenceControllerTest.java | 114 when(mBluetoothA2dp.getCodecStatus( in onIndexUpdated_checkFlow() 147 when(mBluetoothA2dp.getCodecStatus(mActiveDevice)).thenReturn(null); in getCurrentCodecConfig_errorChecking() 154 when(mBluetoothA2dp.getCodecStatus( in getCurrentCodecConfig_verifyConfig() 164 when(mBluetoothA2dp.getCodecStatus( in getSelectableConfigs_verifyConfig() 174 when(mBluetoothA2dp.getCodecStatus( in getSelectableByCodecType_verifyConfig() 185 when(mBluetoothA2dp.getCodecStatus( in getSelectableByCodecType_unavailable() 196 when(mBluetoothA2dp.getCodecStatus( in onBluetoothServiceConnected_verifyBluetoothA2dpConfigStore()
|
H A D | BluetoothCodecDialogPreferenceControllerTest.java | 110 when(mBluetoothA2dp.getCodecStatus(mActiveDevice)).thenReturn(mCodecStatus); in writeConfigurationValues_selectDefault_setHighest() 122 when(mBluetoothA2dp.getCodecStatus(mActiveDevice)).thenReturn(mCodecStatus); in writeConfigurationValues_checkCodec() 149 when(mBluetoothA2dp.getCodecStatus(mActiveDevice)).thenReturn(mCodecStatus); in writeConfigurationValues_resetHighestConfig()
|
H A D | BluetoothQualityDialogPreferenceControllerTest.java | 120 when(mBluetoothA2dp.getCodecStatus(mActiveDevice)).thenReturn(mCodecStatus); in updateState_codeTypeIsLDAC_enablePreference() 131 when(mBluetoothA2dp.getCodecStatus(mActiveDevice)).thenReturn(mCodecStatus); in updateState_codeTypeAAC_disablePreference()
|
H A D | BluetoothBitPerSampleDialogPreferenceControllerTest.java | 102 when(mBluetoothA2dp.getCodecStatus(mActiveDevice)).thenReturn(mCodecStatus); in writeConfigurationValues_selectDefault_setHighest() 131 when(mBluetoothA2dp.getCodecStatus(mActiveDevice)).thenReturn(mCodecStatus); in getSelectableIndex_verifyList()
|
H A D | BluetoothChannelModeDialogPreferenceControllerTest.java | 102 when(mBluetoothA2dp.getCodecStatus(mActiveDevice)).thenReturn(mCodecStatus); in writeConfigurationValues_selectDefault_setHighest() 128 when(mBluetoothA2dp.getCodecStatus(mActiveDevice)).thenReturn(mCodecStatus); in getSelectableIndex_verifyList()
|
H A D | BluetoothSampleRateDialogPreferenceControllerTest.java | 104 when(mBluetoothA2dp.getCodecStatus( in writeConfigurationValues_selectDefault_setHighest() 137 when(mBluetoothA2dp.getCodecStatus( in getSelectableIndex_verifyList()
|
/aosp12/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/ |
H A D | A2dpProfile.java | 245 if (mService.getCodecStatus(bluetoothDevice) != null) { in isHighQualityAudioEnabled() 246 codecConfig = mService.getCodecStatus(bluetoothDevice).getCodecConfig(); in isHighQualityAudioEnabled() 284 if (mService.getCodecStatus(device) != null) { in getHighQualityAudioOptionLabel() 285 selectable = mService.getCodecStatus(device).getCodecsSelectableCapabilities(); in getHighQualityAudioOptionLabel()
|
/aosp12/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/bluetooth/ |
H A D | A2dpProfileTest.java | 120 when(mBluetoothA2dp.getCodecStatus(mDevice)).thenReturn(status); in isHighQualityAudioEnabled() 183 when(mBluetoothA2dp.getCodecStatus(mDevice)).thenReturn(status); in getLabelDeviceConnectedButNotHighQualityCodec() 198 when(mBluetoothA2dp.getCodecStatus(mDevice)).thenReturn(status); in getLabelDeviceConnectedWithHighQualityCodec()
|
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/ |
H A D | A2dpService.java | 573 BluetoothCodecStatus codecStatus = sm.getCodecStatus(); in setActiveDevice() 702 public BluetoothCodecStatus getCodecStatus(BluetoothDevice device) { in getCodecStatus() method in A2dpService 715 return sm.getCodecStatus(); in getCodecStatus() 746 BluetoothCodecStatus codecStatus = getCodecStatus(device); in setCodecConfigPreference() 776 BluetoothCodecStatus codecStatus = getCodecStatus(device); in enableOptionalCodecs() 806 BluetoothCodecStatus codecStatus = getCodecStatus(device); in disableOptionalCodecs() 1123 BluetoothCodecStatus codecStatus = sm.getCodecStatus(); in updateOptionalCodecsSupport() 1391 public BluetoothCodecStatus getCodecStatus(BluetoothDevice device, in getCodecStatus() method in A2dpService.BluetoothA2dpBinder 1398 return service.getCodecStatus(device); in getCodecStatus()
|
H A D | A2dpStateMachine.java | 613 BluetoothCodecStatus getCodecStatus() { in getCodecStatus() method in A2dpStateMachine
|
/aosp12/packages/apps/Settings/src/com/android/settings/development/bluetooth/ |
H A D | AbstractBluetoothDialogPreferenceController.java | 160 bluetoothA2dp.getCodecStatus(activeDevice); in getCurrentCodecConfig() 183 final BluetoothCodecStatus codecStatus = bluetoothA2dp.getCodecStatus(bluetoothDevice); in getSelectableConfigs()
|
/aosp12/system/bt/binder/android/bluetooth/ |
H A D | IBluetoothA2dp.aidl | 72 …BluetoothCodecStatus getCodecStatus(in BluetoothDevice device, in AttributionSource attributionSou… in getCodecStatus() method
|
/aosp12/packages/apps/Settings/src/com/android/settings/development/ |
H A D | AbstractBluetoothA2dpPreferenceController.java | 202 BluetoothCodecStatus codecStatus = mBluetoothA2dp.getCodecStatus(bluetoothDevice); in getCodecConfig()
|
/aosp12/frameworks/base/core/java/android/bluetooth/ |
H A D | BluetoothA2dp.java | 744 public BluetoothCodecStatus getCodecStatus(@NonNull BluetoothDevice device) { in getCodecStatus() method in BluetoothA2dp 750 return service.getCodecStatus(device, mAttributionSource); in getCodecStatus()
|
/aosp12/packages/apps/Test/connectivity/PMC/src/com/android/pmc/ |
H A D | A2dpReceiver.java | 411 codecStatus = mBluetoothA2dp.getCodecStatus(activeDevice); in getCodecValue()
|
/aosp12/frameworks/base/services/core/java/com/android/server/audio/ |
H A D | BtHelper.java | 282 final BluetoothCodecStatus btCodecStatus = mA2dp.getCodecStatus(device); in getA2dpCodec()
|
/aosp12/frameworks/base/boot/hiddenapi/ |
H A D | hiddenapi-max-target-o.txt | 11101 Landroid/bluetooth/IBluetoothA2dp$Stub$Proxy;->getCodecStatus(Landroid/bluetooth/BluetoothDevice;)L… 11140 Landroid/bluetooth/IBluetoothA2dp;->getCodecStatus(Landroid/bluetooth/BluetoothDevice;)Landroid/blu…
|