Home
last modified time | relevance | path

Searched refs:ModuleBluetooth (Results 1 – 6 of 6) sorted by relevance

/hardware/interfaces/audio/aidl/default/bluetooth/
DModuleBluetooth.cpp83 ModuleBluetooth::ModuleBluetooth(std::unique_ptr<Module::Configuration>&& config) in ModuleBluetooth() function in aidl::android::hardware::audio::core::ModuleBluetooth
94 ndk::ScopedAStatus ModuleBluetooth::getBluetoothA2dp( in getBluetoothA2dp()
101 ndk::ScopedAStatus ModuleBluetooth::getBluetoothLe(std::shared_ptr<IBluetoothLe>* _aidl_return) { in getBluetoothLe()
107 ChildInterface<BluetoothA2dp>& ModuleBluetooth::getBtA2dp() { in getBtA2dp()
110 handle->registerHandler(std::bind(&ModuleBluetooth::bluetoothParametersUpdated, this)); in getBtA2dp()
116 ChildInterface<BluetoothLe>& ModuleBluetooth::getBtLe() { in getBtLe()
119 handle->registerHandler(std::bind(&ModuleBluetooth::bluetoothParametersUpdated, this)); in getBtLe()
125 ModuleBluetooth::BtProfileHandles ModuleBluetooth::getBtProfileManagerHandles() { in getBtProfileManagerHandles()
129 ndk::ScopedAStatus ModuleBluetooth::getMicMute(bool* _aidl_return __unused) { in getMicMute()
134 ndk::ScopedAStatus ModuleBluetooth::setMicMute(bool in_mute __unused) { in setMicMute()
[all …]
DStreamBluetooth.cpp54 ModuleBluetooth::BtProfileHandles&& btHandles, in StreamBluetooth()
60 mBluetoothA2dp(std::move(std::get<ModuleBluetooth::BtInterface::BTA2DP>(btHandles))), in StreamBluetooth()
61 mBluetoothLe(std::move(std::get<ModuleBluetooth::BtInterface::BTLE>(btHandles))), in StreamBluetooth()
239 ModuleBluetooth::BtProfileHandles&& btProfileHandles, in StreamInBluetooth()
261 ModuleBluetooth::BtProfileHandles&& btProfileHandles, in StreamOutBluetooth()
/hardware/interfaces/audio/aidl/default/include/core-impl/
DStreamBluetooth.h40 ModuleBluetooth::BtProfileHandles&& btHandles,
82 ModuleBluetooth::BtProfileHandles&& btHandles,
105 ModuleBluetooth::BtProfileHandles&& btHandles,
DModuleBluetooth.h27 class ModuleBluetooth final : public Module {
34 ModuleBluetooth(std::unique_ptr<Configuration>&& config);
/hardware/interfaces/audio/aidl/default/
DAndroid.bp72 "bluetooth/ModuleBluetooth.cpp",
DModule.cpp122 return ndk::SharedRefBase::make<ModuleBluetooth>(std::move(config)); in createInstance()