Home
last modified time | relevance | path

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

/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
DA2dpProfile.java229 if (mService.getCodecStatus(device) != null) { in isHighQualityAudioEnabled()
230 codecConfig = mService.getCodecStatus(device).getCodecConfig(); in isHighQualityAudioEnabled()
263 if (mService.getCodecStatus(device) != null) { in getHighQualityAudioOptionLabel()
264 selectable = mService.getCodecStatus(device).getCodecsSelectableCapabilities(); in getHighQualityAudioOptionLabel()
/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/bluetooth/
DA2dpProfileTest.java119 when(mBluetoothA2dp.getCodecStatus(mDevice)).thenReturn(status); in isHighQualityAudioEnabled()
182 when(mBluetoothA2dp.getCodecStatus(mDevice)).thenReturn(status); in getLabelDeviceConnectedButNotHighQualityCodec()
197 when(mBluetoothA2dp.getCodecStatus(mDevice)).thenReturn(status); in getLabelDeviceConnectedWithHighQualityCodec()
/frameworks/base/core/java/android/bluetooth/
DBluetoothA2dp.java594 public @Nullable BluetoothCodecStatus getCodecStatus(BluetoothDevice device) { in getCodecStatus() method in BluetoothA2dp
599 return service.getCodecStatus(device); in getCodecStatus()
/frameworks/base/services/core/java/com/android/server/audio/
DBtHelper.java231 final BluetoothCodecStatus btCodecStatus = mA2dp.getCodecStatus(device); in getA2dpCodec()