Searched refs:dtmfInfo (Results 1 – 7 of 7) sorted by relevance
/base/telephony/ril_adapter/test/unittest/ril_adapter_gtest/ |
D | ril_call_test.cpp | 1071 DtmfInfo dtmfInfo = {}; variable 1072 dtmfInfo.callId = 0; 1073 dtmfInfo.dtmfKey = "#"; 1074 dtmfInfo.onLength = 300; 1075 dtmfInfo.offLength = 0; 1076 dtmfInfo.stringLength = 1; 1077 int32_t ret = g_rilInterface->SendDtmf(SLOTID_1, RilTestUtil::GetSerialId(), dtmfInfo); 1093 DtmfInfo dtmfInfo = {}; variable 1094 dtmfInfo.callId = 0; 1095 dtmfInfo.dtmfKey = "#"; [all …]
|
/base/telephony/core_service/services/tel_ril/src/ |
D | tel_ril_call.cpp | 462 HDI::Ril::V1_1::DtmfInfo dtmfInfo = {}; in SendDtmf() local 463 dtmfInfo.callId = index; in SendDtmf() 464 dtmfInfo.dtmfKey = sDTMFCode; in SendDtmf() 465 dtmfInfo.onLength = switchOn; in SendDtmf() 466 dtmfInfo.offLength = switchOff; in SendDtmf() 467 dtmfInfo.stringLength = sDTMFCode.length(); in SendDtmf() 468 …t(TELEPHONY_LOG_FUNC_NAME, result, HREQ_CALL_SEND_DTMF, &HDI::Ril::V1_1::IRil::SendDtmf, dtmfInfo); in SendDtmf() 477 HDI::Ril::V1_1::DtmfInfo dtmfInfo = {}; in SendDtmf() local 478 dtmfInfo.callId = index; in SendDtmf() 479 dtmfInfo.dtmfKey = dtmfKey; in SendDtmf() [all …]
|
/base/telephony/ril_adapter/services/hril/src/ |
D | hril_call.cpp | 281 int32_t HRilCall::StartDtmf(int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo &dtmfInfo) in StartDtmf() argument 284 info.callId = dtmfInfo.callId; in StartDtmf() 285 info.dtmfKey = StringToCString(dtmfInfo.dtmfKey); in StartDtmf() 289 int32_t HRilCall::SendDtmf(int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo &dtmfInfo) in SendDtmf() argument 292 info.callId = dtmfInfo.callId; in SendDtmf() 293 info.dtmfKey = StringToCString(dtmfInfo.dtmfKey); in SendDtmf() 294 info.onLength = dtmfInfo.onLength; in SendDtmf() 295 info.offLength = dtmfInfo.offLength; in SendDtmf() 296 info.stringLength = dtmfInfo.stringLength; in SendDtmf() 300 int32_t HRilCall::StopDtmf(int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo &dtmfInfo) in StopDtmf() argument [all …]
|
D | hril_manager.cpp | 507 …Manager::SendDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo &dtmfInfo) in SendDtmf() argument 509 … return TaskSchedule(MODULE_HRIL_CALL, hrilCall_[slotId], &HRilCall::SendDtmf, serialId, dtmfInfo); in SendDtmf() 512 …anager::StartDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo &dtmfInfo) in StartDtmf() argument 514 …return TaskSchedule(MODULE_HRIL_CALL, hrilCall_[slotId], &HRilCall::StartDtmf, serialId, dtmfInfo); in StartDtmf() 517 …Manager::StopDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo &dtmfInfo) in StopDtmf() argument 519 … return TaskSchedule(MODULE_HRIL_CALL, hrilCall_[slotId], &HRilCall::StopDtmf, serialId, dtmfInfo); in StopDtmf()
|
/base/telephony/ril_adapter/test/unittest/ |
D | ril_interface_test.cpp | 324 DtmfInfo dtmfInfo = {}; in SendDtmfTest() local 325 dtmfInfo.callId = 1; in SendDtmfTest() 326 dtmfInfo.onLength = DTMF_ON_LEN; in SendDtmfTest() 327 dtmfInfo.offLength = 0; in SendDtmfTest() 328 dtmfInfo.stringLength = 1; in SendDtmfTest() 330 cin >> dtmfInfo.dtmfKey; in SendDtmfTest() 331 cout << endl << "====>Send Dtmf Key: " << dtmfInfo.dtmfKey << endl; in SendDtmfTest() 333 int ret = g_rilInterface->SendDtmf(slotId, GetSerialId(), dtmfInfo); in SendDtmfTest() 340 DtmfInfo dtmfInfo = {}; in StartDtmfTest() local 341 dtmfInfo.callId = 1; in StartDtmfTest() [all …]
|
/base/telephony/ril_adapter/services/hril/include/ |
D | hril_call.h | 62 int32_t StartDtmf(int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo &dtmfInfo); 63 int32_t SendDtmf(int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo &dtmfInfo); 64 int32_t StopDtmf(int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo &dtmfInfo);
|
D | hril_manager.h | 100 …int32_t SendDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo &dtmfInfo); 101 …nt32_t StartDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo &dtmfInfo); 102 …int32_t StopDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo &dtmfInfo);
|