Home
last modified time | relevance | path

Searched refs:mBluetoothA2dp (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/bluetooth/
DA2dpProfileTest.java63 private BluetoothA2dp mBluetoothA2dp; field in A2dpProfileTest
77 mServiceListener.onServiceConnected(BluetoothProfile.A2DP, mBluetoothA2dp); in setUp()
99 when(mBluetoothA2dp.isOptionalCodecsSupported(mDevice)).thenReturn( in supportsHighQualityAudio()
103 when(mBluetoothA2dp.isOptionalCodecsSupported(mDevice)).thenReturn( in supportsHighQualityAudio()
107 when(mBluetoothA2dp.isOptionalCodecsSupported(mDevice)).thenReturn( in supportsHighQualityAudio()
114 when(mBluetoothA2dp.isOptionalCodecsEnabled(mDevice)).thenReturn( in isHighQualityAudioEnabled()
118 when(mBluetoothA2dp.isOptionalCodecsEnabled(mDevice)).thenReturn( in isHighQualityAudioEnabled()
126 when(mBluetoothA2dp.isOptionalCodecsEnabled(mDevice)).thenReturn( in isHighQualityAudioEnabled()
128 when(mBluetoothA2dp.getConnectionState(any())).thenReturn( in isHighQualityAudioEnabled()
131 when(mBluetoothA2dp.isOptionalCodecsSupported(mDevice)).thenReturn( in isHighQualityAudioEnabled()
[all …]
/frameworks/av/media/libaudiohal/impl/
DDeviceHalAidl.cpp110 mBluetoothA2dp(retrieveSubInterface<IBluetoothA2dp>(module, &IModule::getBluetoothA2dp)), in DeviceHalAidl()
1048 if (mBluetoothA2dp != nullptr) { in filterAndRetrieveBtA2dpParameters()
1051 mBluetoothA2dp->supportsOffloadReconfiguration(&supports))); in filterAndRetrieveBtA2dpParameters()
1105 if (mBluetoothA2dp != nullptr && a2dpEnabled.has_value()) { in filterAndUpdateBtA2dpParameters()
1106 return statusTFromBinderStatus(mBluetoothA2dp->setEnabled(a2dpEnabled.value())); in filterAndUpdateBtA2dpParameters()
1108 if (mBluetoothA2dp != nullptr && reconfigureOffload.has_value()) { in filterAndUpdateBtA2dpParameters()
1109 return statusTFromBinderStatus(mBluetoothA2dp->reconfigureOffload( in filterAndUpdateBtA2dpParameters()
DDeviceHalAidl.h241 const std::shared_ptr<::aidl::android::hardware::audio::core::IBluetoothA2dp> mBluetoothA2dp; variable