Home
last modified time | relevance | path

Searched refs:cDtmfCode (Results 1 - 25 of 25) sorted by relevance

/base/telephony/cellular_call/services/connection/include/
H A Dcellular_call_connection_satellite.h100 * @param char cDtmfCode
104 int32_t SendDtmfRequest(int32_t slotId, char cDtmfCode, int32_t index) const;
110 * @param char cDtmfCode
114 int32_t StartDtmfRequest(int32_t slotId, char cDtmfCode, int32_t index) const;
H A Dcellular_call_connection_cs.h150 * @param char cDtmfCode
154 int32_t SendDtmfRequest(int32_t slotId, char cDtmfCode, int32_t index) const;
160 * @param char cDtmfCode
164 int32_t StartDtmfRequest(int32_t slotId, char cDtmfCode, int32_t index) const;
H A Dcellular_call_connection_ims.h167 * @param char cDtmfCode
171 int32_t SendDtmfRequest(int32_t slotId, char cDtmfCode, int32_t index) const;
177 * @param char cDtmfCode
181 int32_t StartDtmfRequest(int32_t slotId, char cDtmfCode, int32_t index) const;
/base/telephony/cellular_call/services/control/include/
H A Dcontrol_base.h300 int32_t StartDtmf(T &&t, char cDtmfCode, const CellularCallInfo &callInfo) const in StartDtmf() argument
318 if (!IsDtmfKey(cDtmfCode)) { in StartDtmf()
319 TELEPHONY_LOGE("StartDtmf return, error type: cDtmfCode invalid."); in StartDtmf()
322 return pConnection->StartDtmfRequest(callInfo.slotId, cDtmfCode, pConnection->GetIndex()); in StartDtmf()
369 int32_t SendDtmf(T &&t, char cDtmfCode, const CellularCallInfo &callInfo) const in SendDtmf() argument
398 if (!IsDtmfKey(cDtmfCode)) { in SendDtmf()
399 TELEPHONY_LOGE("SendDtmf return, error type: cDtmfCode invalid."); in SendDtmf()
402 return pConnection->SendDtmfRequest(callInfo.slotId, cDtmfCode, pConnection->GetIndex()); in SendDtmf()
/base/telephony/cellular_call/services/connection/src/
H A Dcellular_call_connection_satellite.cpp114 int32_t CellularCallConnectionSatellite::SendDtmfRequest(int32_t slotId, char cDtmfCode, int32_t index) const in SendDtmfRequest() argument
126 CoreManagerInner::GetInstance().SendDTMF(slotId, RadioEvent::RADIO_SEND_DTMF, cDtmfCode, index, handle); in SendDtmfRequest()
130 int32_t CellularCallConnectionSatellite::StartDtmfRequest(int32_t slotId, char cDtmfCode, int32_t index) const in StartDtmfRequest() argument
142 CoreManagerInner::GetInstance().StartDTMF(slotId, RadioEvent::RADIO_START_DTMF, cDtmfCode, index, handle); in StartDtmfRequest()
H A Dcellular_call_connection_cs.cpp212 int32_t CellularCallConnectionCS::SendDtmfRequest(int32_t slotId, char cDtmfCode, int32_t index) const in SendDtmfRequest() argument
224 CoreManagerInner::GetInstance().SendDTMF(slotId, RadioEvent::RADIO_SEND_DTMF, cDtmfCode, index, handle); in SendDtmfRequest()
228 int32_t CellularCallConnectionCS::StartDtmfRequest(int32_t slotId, char cDtmfCode, int32_t index) const in StartDtmfRequest() argument
240 CoreManagerInner::GetInstance().StartDTMF(slotId, RadioEvent::RADIO_START_DTMF, cDtmfCode, index, handle); in StartDtmfRequest()
H A Dcellular_call_connection_ims.cpp278 int32_t CellularCallConnectionIMS::SendDtmfRequest(int32_t slotId, char cDtmfCode, int32_t index) const in SendDtmfRequest() argument
286 return DelayedSingleton<ImsCallClient>::GetInstance()->SendDtmf(slotId, cDtmfCode, index); in SendDtmfRequest()
292 int32_t CellularCallConnectionIMS::StartDtmfRequest(int32_t slotId, char cDtmfCode, int32_t index) const in StartDtmfRequest() argument
300 return DelayedSingleton<ImsCallClient>::GetInstance()->StartDtmf(slotId, cDtmfCode, index); in StartDtmfRequest()
/base/telephony/cellular_call/test/unittest/cstest/
H A Dcs_test.cpp287 char cDtmfCode; in StartDtmf() local
289 std::cin >> cDtmfCode; in StartDtmf() local
290 return telephonyService->StartDtmf(cDtmfCode, callInfo); in StartDtmf()
314 char cDtmfCode; in SendDtmf() local
316 std::cin >> cDtmfCode; in SendDtmf() local
317 return telephonyService->SendDtmf(cDtmfCode, callInfo); in SendDtmf()
/base/telephony/cellular_call/test/unittest/imstest/
H A Dims_connection_test.cpp193 char cDtmfCode = 0; in HWTEST_F() local
194 int32_t ret = cellularCallConnectionIMS->SendDtmfRequest(slotId, cDtmfCode, lastCallsDataFlag); in HWTEST_F()
208 char cDtmfCode = 0; in HWTEST_F() local
209 int32_t ret = cellularCallConnectionIMS->StartDtmfRequest(slotId, cDtmfCode, lastCallsDataFlag); in HWTEST_F()
769 char cDtmfCode = '0'; in HWTEST_F() local
770 int32_t ret = cellularCallConnectionCS.SendDtmfRequest(slotId, cDtmfCode, index); in HWTEST_F()
785 char cDtmfCode = '0'; in HWTEST_F() local
786 int32_t ret = cellularCallConnectionCS.StartDtmfRequest(slotId, cDtmfCode, index); in HWTEST_F()
H A Dzero_branch1_test.cpp891 char cDtmfCode = ' '; in HWTEST_F() local
892 cellularCallConnectionCS.SendDtmfRequest(SIM2_SLOTID, cDtmfCode, 0); in HWTEST_F()
893 cellularCallConnectionCS.StartDtmfRequest(SIM2_SLOTID, cDtmfCode, 0); in HWTEST_F()
897 ASSERT_EQ(cellularCallConnectionCS.ProcessPostDialCallChar(SIM1_SLOTID, cDtmfCode), TELEPHONY_SUCCESS); in HWTEST_F()
/base/telephony/cellular_call/interfaces/innerkits/ims/
H A Dims_call_interface.h185 virtual int32_t StartDtmf(int32_t slotId, char cDtmfCode, int32_t index) = 0;
191 * @param cDtmfCode A character indicate the DTMF digit for which to play the tone. This
196 virtual int32_t SendDtmf(int32_t slotId, char cDtmfCode, int32_t index) = 0;
H A Dims_call_client.h233 int32_t StartDtmf(int32_t slotId, char cDtmfCode, int32_t index);
239 * @param cDtmfCode A character indicate the DTMF digit for which to play the tone. This
244 int32_t SendDtmf(int32_t slotId, char cDtmfCode, int32_t index);
H A Dims_call_proxy.h48 int32_t StartDtmf(int32_t slotId, char cDtmfCode, int32_t index) override;
49 int32_t SendDtmf(int32_t slotId, char cDtmfCode, int32_t index) override;
/base/telephony/cellular_call/vendor/ims/services/ims_call/include/
H A Dims_call.h153 int32_t StartDtmf(int32_t slotId, char cDtmfCode, int32_t index) override;
159 * @param cDtmfCode
163 int32_t SendDtmf(int32_t slotId, char cDtmfCode, int32_t index) override;
/base/telephony/call_manager/interfaces/innerkits/
H A Dcellular_call_proxy.h185 * @param cDtmfCode[in] A character indicate the DTMF digit for which to play the tone. This
190 int32_t StartDtmf(char cDtmfCode, const CellularCallInfo &callInfo) override;
205 * @param cDtmfCode[in] A character indicate the DTMF digit for which to play the tone. This
210 int32_t SendDtmf(char cDtmfCode, const CellularCallInfo &callInfo) override;
H A Dcellular_call_interface.h173 * @param cDtmfCode[in] A character indicate the DTMF digit for which to play the tone. This
178 virtual int32_t StartDtmf(char cDtmfCode, const CellularCallInfo &callInfo) = 0;
193 * @param cDtmfCode[in] A character indicate the DTMF digit for which to play the tone. This
198 virtual int32_t SendDtmf(char cDtmfCode, const CellularCallInfo &callInfo) = 0;
/base/telephony/cellular_call/test/fuzztest/imsclient_fuzzer/
H A Dimsclient_fuzzer.cpp73 const char *cDtmfCode = number.c_str(); in TestImsCallClientWithCallInfo() local
89 imsCallClient->StartDtmf(slotId, *cDtmfCode, index); in TestImsCallClientWithCallInfo()
90 imsCallClient->SendDtmf(slotId, *cDtmfCode, index); in TestImsCallClientWithCallInfo()
251 const char *cDtmfCode = number.c_str(); in TestImsCallProxyWithCallInfo() local
266 proxy->StartDtmf(slotId, *cDtmfCode, index); in TestImsCallProxyWithCallInfo()
267 proxy->SendDtmf(slotId, *cDtmfCode, index); in TestImsCallProxyWithCallInfo()
/base/telephony/cellular_call/services/manager/include/
H A Dcellular_call_service.h277 int32_t StartDtmf(char cDtmfCode, const CellularCallInfo &callInfo) override;
296 int32_t SendDtmf(char cDtmfCode, const CellularCallInfo &callInfo) override;
/base/telephony/cellular_call/vendor/ims/services/ims_call/src/
H A Dims_call_stub.cpp312 const char cDtmfCode = data.ReadInt8(); in OnStartDtmf() local
315 reply.WriteInt32(StartDtmf(slotId, cDtmfCode, index)); in OnStartDtmf()
322 const char cDtmfCode = data.ReadInt8(); in OnSendDtmf() local
325 reply.WriteInt32(SendDtmf(slotId, cDtmfCode, index)); in OnSendDtmf()
H A 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/ims_service_interaction/src/
H A Dims_call_client.cpp339 int32_t ImsCallClient::StartDtmf(int32_t slotId, char cDtmfCode, int32_t index) in StartDtmf() argument
346 return imsCallProxy_->StartDtmf(slotId, cDtmfCode, index); in StartDtmf()
349 int32_t ImsCallClient::SendDtmf(int32_t slotId, char cDtmfCode, int32_t index) in SendDtmf() argument
356 return imsCallProxy_->SendDtmf(slotId, cDtmfCode, index); in SendDtmf()
H A Dims_call_proxy.cpp332 int32_t ImsCallProxy::StartDtmf(int32_t slotId, char cDtmfCode, int32_t index) in StartDtmf() argument
339 if (!in.WriteInt8(cDtmfCode)) { in StartDtmf()
340 TELEPHONY_LOGE("[slot%{public}d]Write cDtmfCode fail!", slotId); in StartDtmf()
350 int32_t ImsCallProxy::SendDtmf(int32_t slotId, char cDtmfCode, int32_t index) in SendDtmf() argument
357 if (!in.WriteInt8(cDtmfCode)) { in SendDtmf()
358 TELEPHONY_LOGE("[slot%{public}d]Write cDtmfCode fail!", slotId); in SendDtmf()
/base/telephony/cellular_call/services/manager/src/
H A Dcellular_call_service.cpp819 int32_t CellularCallService::StartDtmf(char cDtmfCode, const CellularCallInfo &callInfo) in StartDtmf() argument
834 return imsControl->StartDtmf(imsControl->GetConnectionMap(), cDtmfCode, callInfo); in StartDtmf()
841 return csControl->StartDtmf(csControl->GetConnectionMap(), cDtmfCode, callInfo); in StartDtmf()
848 return satelliteControl->StartDtmf(satelliteControl->GetConnectionMap(), cDtmfCode, callInfo); in StartDtmf()
925 int32_t CellularCallService::SendDtmf(char cDtmfCode, const CellularCallInfo &callInfo) in SendDtmf() argument
940 return imsControl->SendDtmf(imsControl->GetConnectionMap(), cDtmfCode, callInfo); in SendDtmf()
947 return csControl->SendDtmf(csControl->GetConnectionMap(), cDtmfCode, callInfo); in SendDtmf()
954 return satelliteControl->SendDtmf(satelliteControl->GetConnectionMap(), cDtmfCode, callInfo); in SendDtmf()
/base/telephony/cellular_call/test/fuzztest/setpreviewwindow_fuzzer/
H A Dsetpreviewwindow_fuzzer.cpp329 char cDtmfCode = static_cast<char>(size); in StartDtmf() local
347 dataMessageParcel.WriteInt8(cDtmfCode); in StartDtmf()
/base/telephony/call_manager/frameworks/native/src/
H A Dcellular_call_proxy.cpp523 int32_t CellularCallProxy::StartDtmf(char cDtmfCode, const CellularCallInfo &callInfo) in StartDtmf() argument
534 if (!in.WriteInt8(cDtmfCode)) { in StartDtmf()
611 int32_t CellularCallProxy::SendDtmf(char cDtmfCode, const CellularCallInfo &callInfo) in SendDtmf() argument
622 if (!in.WriteInt8(cDtmfCode)) { in SendDtmf()

Completed in 26 milliseconds