Home
last modified time | relevance | path

Searched refs:cDtmfCode (Results 1 – 21 of 21) sorted by relevance

/base/telephony/cellular_call/services/control/include/
Dcontrol_base.h307 int32_t StartDtmf(T &&t, char cDtmfCode, const CellularCallInfo &callInfo) const in StartDtmf() argument
325 if (!IsDtmfKey(cDtmfCode)) { in StartDtmf()
329 return pConnection->StartDtmfRequest(callInfo.slotId, cDtmfCode, pConnection->GetIndex()); in StartDtmf()
376 int32_t SendDtmf(T &&t, char cDtmfCode, const CellularCallInfo &callInfo) const in SendDtmf() argument
405 if (!IsDtmfKey(cDtmfCode)) { in SendDtmf()
409 return pConnection->SendDtmfRequest(callInfo.slotId, cDtmfCode, pConnection->GetIndex()); in SendDtmf()
/base/telephony/cellular_call/services/connection/include/
Dcellular_call_connection_cs.h154 int32_t SendDtmfRequest(int32_t slotId, char cDtmfCode, int32_t index) const;
164 int32_t StartDtmfRequest(int32_t slotId, char cDtmfCode, int32_t index) const;
Dcellular_call_connection_ims.h180 int32_t SendDtmfRequest(int32_t slotId, char cDtmfCode, int32_t index) const;
190 int32_t StartDtmfRequest(int32_t slotId, char cDtmfCode, int32_t index) const;
/base/telephony/cellular_call/test/fuzztest/imsclient_fuzzer/
Dimsclient_fuzzer.cpp61 const char *cDtmfCode = number.c_str(); in TestImsCallClientWithCallInfo() local
78 imsCallClient->StartDtmf(slotId, *cDtmfCode, index); in TestImsCallClientWithCallInfo()
79 imsCallClient->SendDtmf(slotId, *cDtmfCode, index); in TestImsCallClientWithCallInfo()
179 const char *cDtmfCode = number.c_str(); in TestImsCallProxyWithCallInfo() local
195 proxy->StartDtmf(slotId, *cDtmfCode, index); in TestImsCallProxyWithCallInfo()
196 proxy->SendDtmf(slotId, *cDtmfCode, index); in TestImsCallProxyWithCallInfo()
/base/telephony/cellular_call/services/connection/src/
Dcellular_call_connection_cs.cpp211 int32_t CellularCallConnectionCS::SendDtmfRequest(int32_t slotId, char cDtmfCode, int32_t index) co… in SendDtmfRequest() argument
223 …CoreManagerInner::GetInstance().SendDTMF(slotId, RadioEvent::RADIO_SEND_DTMF, cDtmfCode, index, ha… in SendDtmfRequest()
227 int32_t CellularCallConnectionCS::StartDtmfRequest(int32_t slotId, char cDtmfCode, int32_t index) c… in StartDtmfRequest() argument
239 …CoreManagerInner::GetInstance().StartDTMF(slotId, RadioEvent::RADIO_START_DTMF, cDtmfCode, index, … in StartDtmfRequest()
Dcellular_call_connection_ims.cpp304 int32_t CellularCallConnectionIMS::SendDtmfRequest(int32_t slotId, char cDtmfCode, int32_t index) c… in SendDtmfRequest() argument
312 return DelayedSingleton<ImsCallClient>::GetInstance()->SendDtmf(slotId, cDtmfCode, index); in SendDtmfRequest()
318 int32_t CellularCallConnectionIMS::StartDtmfRequest(int32_t slotId, char cDtmfCode, int32_t index) … in StartDtmfRequest() argument
326 return DelayedSingleton<ImsCallClient>::GetInstance()->StartDtmf(slotId, cDtmfCode, index); in StartDtmfRequest()
/base/telephony/call_manager/interfaces/innerkits/
Dcellular_call_interface.h168 virtual int32_t StartDtmf(char cDtmfCode, const CellularCallInfo &callInfo) = 0;
188 virtual int32_t SendDtmf(char cDtmfCode, const CellularCallInfo &callInfo) = 0;
Dcellular_call_proxy.h181 int32_t StartDtmf(char cDtmfCode, const CellularCallInfo &callInfo) override;
201 int32_t SendDtmf(char cDtmfCode, const CellularCallInfo &callInfo) override;
/base/telephony/cellular_call/vendor/ims/services/ims_call/include/
Dims_call.h153 int32_t StartDtmf(int32_t slotId, char cDtmfCode, int32_t index) override;
163 int32_t SendDtmf(int32_t slotId, char cDtmfCode, int32_t index) override;
/base/telephony/cellular_call/interfaces/innerkits/ims/
Dims_call_interface.h156 virtual int32_t StartDtmf(int32_t slotId, char cDtmfCode, int32_t index) = 0;
167 virtual int32_t SendDtmf(int32_t slotId, char cDtmfCode, int32_t index) = 0;
Dims_call_client.h205 int32_t StartDtmf(int32_t slotId, char cDtmfCode, int32_t index);
216 int32_t SendDtmf(int32_t slotId, char cDtmfCode, int32_t index);
Dims_call_proxy.h45 int32_t StartDtmf(int32_t slotId, char cDtmfCode, int32_t index) override;
46 int32_t SendDtmf(int32_t slotId, char cDtmfCode, int32_t index) override;
/base/telephony/cellular_call/services/ims_service_interaction/src/
Dims_call_client.cpp290 int32_t ImsCallClient::StartDtmf(int32_t slotId, char cDtmfCode, int32_t index) in StartDtmf() argument
296 return imsCallProxy_->StartDtmf(slotId, cDtmfCode, index); in StartDtmf()
299 int32_t ImsCallClient::SendDtmf(int32_t slotId, char cDtmfCode, int32_t index) in SendDtmf() argument
305 return imsCallProxy_->SendDtmf(slotId, cDtmfCode, index); in SendDtmf()
Dims_call_proxy.cpp275 int32_t ImsCallProxy::StartDtmf(int32_t slotId, char cDtmfCode, int32_t index) in StartDtmf() argument
282 if (!in.WriteInt8(cDtmfCode)) { in StartDtmf()
293 int32_t ImsCallProxy::SendDtmf(int32_t slotId, char cDtmfCode, int32_t index) in SendDtmf() argument
300 if (!in.WriteInt8(cDtmfCode)) { in SendDtmf()
/base/telephony/cellular_call/test/fuzztest/setpreviewwindow_fuzzer/
Dsetpreviewwindow_fuzzer.cpp169 char cDtmfCode = static_cast<char>(size); in StartDtmf() local
187 dataMessageParcel.WriteInt8(cDtmfCode); in StartDtmf()
/base/telephony/cellular_call/services/manager/include/
Dcellular_call_service.h250 int32_t StartDtmf(char cDtmfCode, const CellularCallInfo &callInfo) override;
269 int32_t SendDtmf(char cDtmfCode, const CellularCallInfo &callInfo) override;
/base/telephony/cellular_call/vendor/ims/services/ims_call/src/
Dims_call_stub.cpp276 const char cDtmfCode = data.ReadInt8(); in OnStartDtmf() local
279 reply.WriteInt32(StartDtmf(slotId, cDtmfCode, index)); in OnStartDtmf()
286 const char cDtmfCode = data.ReadInt8(); in OnSendDtmf() local
289 reply.WriteInt32(SendDtmf(slotId, cDtmfCode, index)); in OnSendDtmf()
Dims_call.cpp225 int32_t ImsCall::StartDtmf(int32_t slotId, char cDtmfCode, int32_t index) in StartDtmf() argument
243 int32_t ImsCall::SendDtmf(int32_t slotId, char cDtmfCode, int32_t index) in SendDtmf() argument
/base/telephony/cellular_call/services/manager/src/
Dcellular_call_service.cpp693 int32_t CellularCallService::StartDtmf(char cDtmfCode, const CellularCallInfo &callInfo) in StartDtmf() argument
708 return imsControl->StartDtmf(imsControl->GetConnectionMap(), cDtmfCode, callInfo); in StartDtmf()
715 return csControl->StartDtmf(csControl->GetConnectionMap(), cDtmfCode, callInfo); in StartDtmf()
778 int32_t CellularCallService::SendDtmf(char cDtmfCode, const CellularCallInfo &callInfo) in SendDtmf() argument
793 return imsControl->SendDtmf(imsControl->GetConnectionMap(), cDtmfCode, callInfo); in SendDtmf()
800 return csControl->SendDtmf(csControl->GetConnectionMap(), cDtmfCode, callInfo); in SendDtmf()
/base/telephony/call_manager/frameworks/native/src/
Dcellular_call_proxy.cpp493 int32_t CellularCallProxy::StartDtmf(char cDtmfCode, const CellularCallInfo &callInfo) in StartDtmf() argument
504 if (!in.WriteInt8(cDtmfCode)) { in StartDtmf()
581 int32_t CellularCallProxy::SendDtmf(char cDtmfCode, const CellularCallInfo &callInfo) in SendDtmf() argument
592 if (!in.WriteInt8(cDtmfCode)) { in SendDtmf()
/base/telephony/cellular_call/test/unittest/cstest/
Dcs_test.cpp442 char cDtmfCode; in StartDtmf() local
444 std::cin >> cDtmfCode; in StartDtmf()
445 return telephonyService->StartDtmf(cDtmfCode, callInfo); in StartDtmf()
493 char cDtmfCode; in SendDtmf() local
495 std::cin >> cDtmfCode; in SendDtmf()
496 return telephonyService->SendDtmf(cDtmfCode, callInfo); in SendDtmf()