/foundation/distributedhardware/distributed_audio/services/common/audioeventcallback/ |
H A D | iaudio_event_callback.h | 22 class IAudioEventCallback { class 24 virtual ~IAudioEventCallback() = default;
|
/foundation/distributedhardware/distributed_audio/services/audioclient/spkclient/include/ |
H A D | dspeaker_client.h | 56 DSpeakerClient(const std::string &devId, const int32_t &dhId, const std::shared_ptr<IAudioEventCallback> &callback) in DSpeakerClient() 74 void SetAttrs(const std::string &devId, const std::shared_ptr<IAudioEventCallback> &callback) override; 112 std::weak_ptr<IAudioEventCallback> eventCallback_;
|
/foundation/distributedhardware/distributed_audio/services/audioclient/micclient/include/ |
H A D | dmic_client.h | 51 DMicClient(const std::string &devId, const int32_t dhId, const std::shared_ptr<IAudioEventCallback> &callback) in DMicClient() 63 void SetAttrs(const std::string &devId, const std::shared_ptr<IAudioEventCallback> &callback) override; 89 std::weak_ptr<IAudioEventCallback> eventCallback_;
|
/foundation/distributedhardware/distributed_audio/services/audioclient/test/unittest/spkclient/include/ |
H A D | dspeaker_client_test.h | 37 std::shared_ptr<IAudioEventCallback> clientCallback_ = nullptr;
|
/foundation/distributedhardware/distributed_audio/services/audioclient/test/unittest/micclient/include/ |
H A D | dmic_client_test.h | 36 std::shared_ptr<IAudioEventCallback> clientCallback_ = nullptr;
|
/foundation/distributedhardware/distributed_audio/services/audiocontrol/controlsource/include/ |
H A D | daudio_source_dev_ctrl_mgr.h | 30 DAudioSourceDevCtrlMgr(const std::string &networkId, std::shared_ptr<IAudioEventCallback> audioEventCallback);
|
/foundation/distributedhardware/distributed_audio/services/audiocontrol/controlsink/include/ |
H A D | daudio_sink_dev_ctrl_mgr.h | 30 DAudioSinkDevCtrlMgr(const std::string &networkId, std::shared_ptr<IAudioEventCallback> audioEventCallback);
|
/foundation/distributedhardware/distributed_audio/services/audiomanager/test/unittest/sourcedevice/include/ |
H A D | dspeaker_dev_test.h | 39 std::shared_ptr<IAudioEventCallback> eventCb_ = nullptr;
|
H A D | dmic_dev_test.h | 39 std::shared_ptr<IAudioEventCallback> eventCb_ = nullptr;
|
/foundation/distributedhardware/distributed_audio/services/audiocontrol/controlsink/src/ |
H A D | daudio_sink_dev_ctrl_manager.cpp | 33 std::shared_ptr<IAudioEventCallback> audioEventCallback)
in DAudioSinkDevCtrlMgr()
|
/foundation/distributedhardware/distributed_audio/services/audiocontrol/controlsource/src/ |
H A D | daudio_source_dev_ctrl_manager.cpp | 30 std::shared_ptr<IAudioEventCallback> audioEventCallback)
in DAudioSourceDevCtrlMgr()
|
/foundation/distributedhardware/distributed_audio/services/audioclient/interface/ |
H A D | imic_client.h | 35 virtual void SetAttrs(const std::string &devId, const std::shared_ptr<IAudioEventCallback> &callback) = 0;
|
H A D | ispk_client.h | 38 virtual void SetAttrs(const std::string &devId, const std::shared_ptr<IAudioEventCallback> &callback) = 0;
|
/foundation/distributedhardware/distributed_audio/services/audioclient/test/unittest/audioclienttestutils/include/ |
H A D | daudio_test_utils.h | 24 class MockIAudioEventCallback : public IAudioEventCallback {
|
/foundation/distributedhardware/distributed_audio/services/audiomanager/managersource/include/ |
H A D | dspeaker_dev.h | 42 DSpeakerDev(const std::string &devId, std::shared_ptr<IAudioEventCallback> callback) in DSpeakerDev() 91 std::weak_ptr<IAudioEventCallback> audioEventCallback_;
|
H A D | dmic_dev.h | 46 DMicDev(const std::string &devId, std::shared_ptr<IAudioEventCallback> callback) in DMicDev() 105 std::weak_ptr<IAudioEventCallback> audioEventCallback_;
|
H A D | daudio_source_dev.h | 46 class DAudioSourceDev : public IAudioEventCallback, public std::enable_shared_from_this<DAudioSourceDev> {
|
/foundation/distributedhardware/distributed_audio/services/audiocontrol/test/unittest/controlsource/src/ |
H A D | daudio_source_dev_ctrl_manager_test.cpp | 50 std::shared_ptr<IAudioEventCallback> audioEventCallback = nullptr; in SetUp()
|
/foundation/distributedhardware/distributed_audio/services/audiocontrol/test/unittest/controlsink/src/ |
H A D | daudio_sink_dev_ctrl_manager_test.cpp | 28 std::shared_ptr<IAudioEventCallback> audioEventCallback = nullptr; in SetUp()
|
/foundation/distributedhardware/distributed_audio/services/audiomanager/managersource/src/ |
H A D | dspeaker_dev.cpp | 112 std::shared_ptr<IAudioEventCallback> cbObj = audioEventCallback_.lock(); in CreateStream() 138 std::shared_ptr<IAudioEventCallback> cbObj = audioEventCallback_.lock(); in DestroyStream() 184 std::shared_ptr<IAudioEventCallback> cbObj = audioEventCallback_.lock(); in NotifyEvent() 463 std::shared_ptr<IAudioEventCallback> cbObj = audioEventCallback_.lock(); in OnStateChange()
|
H A D | dmic_dev.cpp | 128 std::shared_ptr<IAudioEventCallback> cbObj = audioEventCallback_.lock(); in CreateStream() 154 std::shared_ptr<IAudioEventCallback> cbObj = audioEventCallback_.lock(); in DestroyStream() 210 std::shared_ptr<IAudioEventCallback> cbObj = audioEventCallback_.lock(); in NotifyEvent() 536 std::shared_ptr<IAudioEventCallback> cbObj = audioEventCallback_.lock(); in OnStateChange()
|
/foundation/distributedhardware/distributed_audio/services/audioclient/spkclient/src/ |
H A D | dspeaker_client.cpp | 385 std::shared_ptr<IAudioEventCallback> cbObj = eventCallback_.lock(); in OnStateChange() 426 std::shared_ptr<IAudioEventCallback> cbObj = eventCallback_.lock(); in OnVolumeKeyEvent() 456 std::shared_ptr<IAudioEventCallback> cbObj = eventCallback_.lock(); in OnInterrupt() 486 std::shared_ptr<IAudioEventCallback> cbObj = eventCallback_.lock(); in OnStateChange() 641 void DSpeakerClient::SetAttrs(const std::string &devId, const std::shared_ptr<IAudioEventCallback> &callback) in SetAttrs()
|
/foundation/distributedhardware/distributed_audio/services/audiomanager/test/unittest/audiomanagertestutils/include/ |
H A D | audio_manager_test_utils.h | 25 class MockIAudioEventCallback : public IAudioEventCallback {
|
/foundation/distributedhardware/distributed_audio/services/audioclient/micclient/src/ |
H A D | dmic_client.cpp | 109 std::shared_ptr<IAudioEventCallback> cbObj = eventCallback_.lock(); in OnStateChange() 374 void DMicClient::SetAttrs(const std::string &devId, const std::shared_ptr<IAudioEventCallback> &callback) in SetAttrs()
|
/foundation/distributedhardware/distributed_audio/services/audiomanager/managersink/include/ |
H A D | daudio_sink_dev.h | 45 class DAudioSinkDev : public IAudioEventCallback, public std::enable_shared_from_this<DAudioSinkDev> {
|