Home
last modified time | relevance | path

Searched refs:cDTMFCode (Results 1 – 9 of 9) sorted by relevance

/ohos5.0/base/telephony/call_manager/services/telephony_interaction/include/
H A Dcellular_call_connection.h150 int StartDtmf(char cDTMFCode, const CellularCallInfo &callInfo);
171 int SendDtmf(char cDTMFCode, const std::string &phoneNum);
/ohos5.0/base/telephony/call_manager/services/telephony_interaction/src/
H A Dcellular_call_connection.cpp335 int CellularCallConnection::StartDtmf(char cDTMFCode, const CellularCallInfo &callInfo) in StartDtmf() argument
341 int errCode = cellularCallInterfacePtr_->StartDtmf(cDTMFCode, callInfo); in StartDtmf()
377 int CellularCallConnection::SendDtmf(char cDTMFCode, const std::string &phoneNum) in SendDtmf() argument
395 int errCode = cellularCallInterfacePtr_->SendDtmf(cDTMFCode, callInfo); in SendDtmf()
/ohos5.0/base/telephony/core_service/services/tel_ril/include/
H A Dtel_ril_call.h55 int32_t SendDtmf(char cDTMFCode, int32_t index, const AppExecFwk::InnerEvent::Pointer &result);
56 int32_t StartDtmf(char cDTMFCode, int32_t index, const AppExecFwk::InnerEvent::Pointer &result);
H A Dtel_ril_manager.h109 …int32_t slotId, char cDTMFCode, int32_t index, const AppExecFwk::InnerEvent::Pointer &result) over…
111 …int32_t slotId, char cDTMFCode, int32_t index, const AppExecFwk::InnerEvent::Pointer &result) over…
/ohos5.0/base/telephony/core_service/services/tel_ril/src/
H A Dtel_ril_call.cpp464 int32_t TelRilCall::SendDtmf(char cDTMFCode, int32_t index, const AppExecFwk::InnerEvent::Pointer &… in SendDtmf() argument
467 dtmfKey[0] = cDTMFCode; in SendDtmf()
479 int32_t TelRilCall::StartDtmf(char cDTMFCode, int32_t index, const AppExecFwk::InnerEvent::Pointer … in StartDtmf() argument
482 dtmfKey[0] = cDTMFCode; in StartDtmf()
H A Dtel_ril_manager.cpp472 int32_t slotId, char cDTMFCode, int32_t index, const AppExecFwk::InnerEvent::Pointer &response) in SendDtmf() argument
474 …skSchedule(response, "TelRilCall", GetTelRilCall(slotId), &TelRilCall::SendDtmf, cDTMFCode, index); in SendDtmf()
478 int32_t slotId, char cDTMFCode, int32_t index, const AppExecFwk::InnerEvent::Pointer &response) in StartDtmf() argument
480 …kSchedule(response, "TelRilCall", GetTelRilCall(slotId), &TelRilCall::StartDtmf, cDTMFCode, index); in StartDtmf()
/ohos5.0/base/telephony/core_service/interfaces/innerkits/include/
H A Di_tel_ril_manager.h102 … int32_t slotId, char cDTMFCode, int32_t index, const AppExecFwk::InnerEvent::Pointer &result) = 0;
104 … int32_t slotId, char cDTMFCode, int32_t index, const AppExecFwk::InnerEvent::Pointer &result) = 0;
H A Dcore_manager_inner.h117 int32_t StartDTMF(int32_t slotId, int32_t eventId, char cDTMFCode, int32_t index,
119 int32_t SendDTMF(int32_t slotId, int32_t eventId, char cDTMFCode, int32_t index,
/ohos5.0/base/telephony/core_service/frameworks/native/src/
H A Dcore_manager_inner.cpp1118 int32_t CoreManagerInner::SendDTMF(int32_t slotId, int32_t eventId, char cDTMFCode, int32_t index, in SendDTMF() argument
1131 return telRilManager_->SendDtmf(slotId, cDTMFCode, index, response); in SendDTMF()
1134 int32_t CoreManagerInner::StartDTMF(int32_t slotId, int32_t eventId, char cDTMFCode, int32_t index, in StartDTMF() argument
1147 return telRilManager_->StartDtmf(slotId, cDTMFCode, index, response); in StartDTMF()