Searched refs:callAudioEvent (Results 1 - 7 of 7) sorted by relevance
/base/telephony/call_manager/interfaces/innerkits/ |
H A D | i_voip_call_manager_service.h | 71 virtual int32_t SendCallUiEvent(std::string voipCallId, const CallAudioEvent &callAudioEvent) = 0; 72 virtual int32_t ReportCallAudioEventChange(std::string voipCallId, const CallAudioEvent &callAudioEvent) = 0;
|
H A D | voip_call_manager_proxy.h | 163 * @param callAudioEvent[in], The call audio event 166 int32_t SendCallUiEvent(std::string voipCallId, const CallAudioEvent &callAudioEvent) override; 172 * @param callAudioEvent[in], The call audio event 175 int32_t ReportCallAudioEventChange(std::string voipCallId, const CallAudioEvent &callAudioEvent) override;
|
/base/telephony/call_manager/services/call/src/ |
H A D | voip_call.cpp | 148 CallAudioEvent callAudioEvent = mute == 1 ? CallAudioEvent::AUDIO_EVENT_MUTED : CallAudioEvent::AUDIO_EVENT_UNMUTED; in SetMute() local 149 TELEPHONY_LOGI("VoIPCall::setMute voipCallId: %{public}s, callAudioEvent: %{public}d", voipCallId.c_str(), in SetMute() 150 callAudioEvent); in SetMute() 151 DelayedSingleton<VoipCallConnection>::GetInstance()->SendCallUiEvent(voipCallId, callAudioEvent); in SetMute()
|
/base/telephony/call_manager/services/telephony_interaction/include/ |
H A D | voip_call_connection.h | 46 int32_t SendCallUiEvent(std::string voipCallId, const CallAudioEvent &callAudioEvent);
|
/base/telephony/call_manager/services/telephony_interaction/src/ |
H A D | voip_call_connection.cpp | 205 int32_t VoipCallConnection::SendCallUiEvent(std::string voipCallId, const CallAudioEvent &callAudioEvent) in SendCallUiEvent() argument 213 return voipCallManagerInterfacePtr_->SendCallUiEvent(voipCallId, callAudioEvent); in SendCallUiEvent()
|
/base/telephony/call_manager/frameworks/native/src/ |
H A D | voip_call_manager_proxy.cpp | 416 int32_t VoipCallManagerProxy::SendCallUiEvent(std::string voipCallId, const CallAudioEvent &callAudioEvent) in SendCallUiEvent() argument 424 dataParcel.WriteInt32(static_cast<int32_t>(callAudioEvent)); in SendCallUiEvent() 441 int32_t VoipCallManagerProxy::ReportCallAudioEventChange(std::string voipCallId, const CallAudioEvent &callAudioEvent) in ReportCallAudioEventChange() argument 449 dataParcel.WriteInt32(static_cast<int32_t>(callAudioEvent)); in ReportCallAudioEventChange()
|
/base/telephony/call_manager/test/unittest/call_manager_zero_gtest/src/ |
H A D | zero_branch7_test.cpp | 580 CallAudioEvent callAudioEvent = CallAudioEvent::AUDIO_EVENT_MUTED; in HWTEST_F() local 582 EXPECT_NE(voipCallConnection->SendCallUiEvent(voipCallId, callAudioEvent), TELEPHONY_ERROR); in HWTEST_F()
|
Completed in 4 milliseconds