/ohos5.0/base/telephony/ril_adapter/test/unittest/ril_adapter_gtest/ |
H A D | ril_call_test.cpp | 1071 DtmfInfo dtmfInfo = {}; variable 1072 dtmfInfo.callId = 0; 1073 dtmfInfo.dtmfKey = "#"; 1075 dtmfInfo.offLength = 0; 1093 DtmfInfo dtmfInfo = {}; variable 1094 dtmfInfo.callId = 0; 1096 dtmfInfo.onLength = 1; 1116 dtmfInfo.callId = 0; 1135 dtmfInfo.callId = 0; 1154 dtmfInfo.callId = 0; [all …]
|
/ohos5.0/base/telephony/core_service/services/tel_ril/src/ |
H A D | tel_ril_call.cpp | 456 dtmfInfo.callId = index; in SendDtmfString() 457 dtmfInfo.dtmfKey = sDTMFCode; in SendDtmfString() 458 dtmfInfo.onLength = switchOn; in SendDtmfString() 459 dtmfInfo.offLength = switchOff; in SendDtmfString() 471 dtmfInfo.callId = index; in SendDtmf() 472 dtmfInfo.dtmfKey = dtmfKey; in SendDtmf() 473 dtmfInfo.onLength = DTMF_ON_LENGTH; in SendDtmf() 486 dtmfInfo.callId = index; in StartDtmf() 487 dtmfInfo.dtmfKey = dtmfKey; in StartDtmf() 498 dtmfInfo.callId = index; in StopDtmf() [all …]
|
/ohos5.0/base/telephony/ril_adapter/test/unittest/ |
H A D | ril_interface_test.cpp | 328 DtmfInfo dtmfInfo = {}; in SendDtmfTest() local 329 dtmfInfo.callId = 1; in SendDtmfTest() 331 dtmfInfo.offLength = 0; in SendDtmfTest() 332 dtmfInfo.stringLength = 1; in SendDtmfTest() 334 cin >> dtmfInfo.dtmfKey; in SendDtmfTest() 344 DtmfInfo dtmfInfo = {}; in StartDtmfTest() local 345 dtmfInfo.callId = 1; in StartDtmfTest() 347 cin >> dtmfInfo.dtmfKey; in StartDtmfTest() 356 DtmfInfo dtmfInfo = {}; in StopDtmfTest() local 357 dtmfInfo.callId = 1; in StopDtmfTest() [all …]
|
/ohos5.0/base/telephony/ril_adapter/services/hril/src/ |
H A D | hril_call.cpp | 379 info.callId = dtmfInfo.callId; in StartDtmf() 380 info.dtmfKey = StringToCString(dtmfInfo.dtmfKey); in StartDtmf() 384 int32_t HRilCall::SendDtmf(int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo &dtmfInfo) in SendDtmf() argument 387 info.callId = dtmfInfo.callId; in SendDtmf() 388 info.dtmfKey = StringToCString(dtmfInfo.dtmfKey); in SendDtmf() 389 info.onLength = dtmfInfo.onLength; in SendDtmf() 390 info.offLength = dtmfInfo.offLength; in SendDtmf() 391 info.stringLength = dtmfInfo.stringLength; in SendDtmf() 395 int32_t HRilCall::StopDtmf(int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo &dtmfInfo) in StopDtmf() argument 398 info.callId = dtmfInfo.callId; in StopDtmf() [all …]
|
H A D | hril_manager.cpp | 554 …Manager::SendDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo &dtmfInfo) in SendDtmf() argument 556 … return TaskSchedule(MODULE_HRIL_CALL, hrilCall_[slotId], &HRilCall::SendDtmf, serialId, dtmfInfo); in SendDtmf() 559 …anager::StartDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo &dtmfInfo) in StartDtmf() argument 561 …return TaskSchedule(MODULE_HRIL_CALL, hrilCall_[slotId], &HRilCall::StartDtmf, serialId, dtmfInfo); in StartDtmf() 564 …Manager::StopDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo &dtmfInfo) in StopDtmf() argument 566 … return TaskSchedule(MODULE_HRIL_CALL, hrilCall_[slotId], &HRilCall::StopDtmf, serialId, dtmfInfo); in StopDtmf()
|
/ohos5.0/drivers/peripheral/ril/interfaces/hdi_service/src/ |
H A D | ril_impl.cpp | 207 int32_t RilImpl::SendDtmf(int32_t slotId, int32_t serialId, const DtmfInfo &dtmfInfo) in SendDtmf() argument 209 return TaskSchedule(&Telephony::HRilManager::SendDtmf, slotId, serialId, dtmfInfo); in SendDtmf() 212 int32_t RilImpl::StartDtmf(int32_t slotId, int32_t serialId, const DtmfInfo &dtmfInfo) in StartDtmf() argument 214 return TaskSchedule(&Telephony::HRilManager::StartDtmf, slotId, serialId, dtmfInfo); in StartDtmf() 217 int32_t RilImpl::StopDtmf(int32_t slotId, int32_t serialId, const DtmfInfo &dtmfInfo) in StopDtmf() argument 219 return TaskSchedule(&Telephony::HRilManager::StopDtmf, slotId, serialId, dtmfInfo); in StopDtmf()
|
/ohos5.0/base/telephony/ril_adapter/services/hril/include/ |
H A D | hril_call.h | 61 int32_t StartDtmf(int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo &dtmfInfo); 62 int32_t SendDtmf(int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo &dtmfInfo); 63 int32_t StopDtmf(int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo &dtmfInfo);
|
H A D | hril_manager.h | 106 …int32_t SendDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo &dtmfInfo); 107 …nt32_t StartDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo &dtmfInfo); 108 …int32_t StopDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo &dtmfInfo);
|
/ohos5.0/docs/zh-cn/device-dev/reference/hdi-apis/ril/ |
H A D | interface_i_ril_v10.md | 53 …nt slotId, [in] int serialId, [in] struct [DtmfInfo](_dtmf_info_v10.md) dtmfInfo) | 发送双音多频(DTMF)。 … 54 …n] int slotId, [in] int serialId, [in] struct [DtmfInfo](_dtmf_info_v10.md) dtmfInfo) | 开启DTMF。 | 55 …n] int slotId, [in] int serialId, [in] struct [DtmfInfo](_dtmf_info_v10.md) dtmfInfo) | 关闭DTMF。 | 1482 IRil::SendDtmf ([in] int slotId, [in] int serialId, [in] struct DtmfInfo dtmfInfo ) 1496 | dtmfInfo | 表示DTMF信息,详见[DtmfInfo](_dtmf_info_v10.md)。 | 2593 IRil::StartDtmf ([in] int slotId, [in] int serialId, [in] struct DtmfInfo dtmfInfo ) 2607 | dtmfInfo | 表示DTMF信息,详见[DtmfInfo](_dtmf_info_v10.md)。 | 2619 IRil::StopDtmf ([in] int slotId, [in] int serialId, [in] struct DtmfInfo dtmfInfo ) 2633 | dtmfInfo | 表示DTMF信息,详见[DtmfInfo](_dtmf_info_v10.md)。 |
|
H A D | interface_i_ril_v11.md | 53 …nt slotId, [in] int serialId, [in] struct [DtmfInfo](_dtmf_info_v11.md) dtmfInfo) | 发送双音多频(DTMF)。 … 54 …n] int slotId, [in] int serialId, [in] struct [DtmfInfo](_dtmf_info_v11.md) dtmfInfo) | 开启DTMF。 | 55 …n] int slotId, [in] int serialId, [in] struct [DtmfInfo](_dtmf_info_v11.md) dtmfInfo) | 关闭DTMF。 | 1562 IRil::SendDtmf ([in] int slotId, [in] int serialId, [in] struct DtmfInfo dtmfInfo ) 1576 | dtmfInfo | 表示DTMF信息,详见[DtmfInfo](_dtmf_info_v11.md)。 | 2725 IRil::StartDtmf ([in] int slotId, [in] int serialId, [in] struct DtmfInfo dtmfInfo ) 2739 | dtmfInfo | 表示DTMF信息,详见[DtmfInfo](_dtmf_info_v11.md)。 | 2751 IRil::StopDtmf ([in] int slotId, [in] int serialId, [in] struct DtmfInfo dtmfInfo ) 2765 | dtmfInfo | 表示DTMF信息,详见[DtmfInfo](_dtmf_info_v11.md)。 |
|
/ohos5.0/drivers/peripheral/ril/interfaces/hdi_service/include/ |
H A D | ril_impl.h | 71 int32_t SendDtmf(int32_t slotId, int32_t serialId, const DtmfInfo &dtmfInfo) override; 72 int32_t StartDtmf(int32_t slotId, int32_t serialId, const DtmfInfo &dtmfInfo) override; 73 int32_t StopDtmf(int32_t slotId, int32_t serialId, const DtmfInfo &dtmfInfo) override;
|
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/ril_v1_1/cpp_target/ril/v1_1/ |
H A D | ril_service.h.txt | 97 …endDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo& dtmfInfo) override; 99 …artDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo& dtmfInfo) override; 101 …topDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo& dtmfInfo) override;
|
H A D | ril_proxy.h.txt | 137 …endDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo& dtmfInfo) override; 139 …artDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo& dtmfInfo) override; 141 …topDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo& dtmfInfo) override; 401 …int32_t SendDtmf_(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo& dtmfInfo, 404 …nt32_t StartDtmf_(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo& dtmfInfo, 407 …int32_t StopDtmf_(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo& dtmfInfo,
|
H A D | ril_service.cpp.txt | 193 …Service::SendDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo& dtmfInfo) 198 …ervice::StartDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo& dtmfInfo) 203 …Service::StopDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo& dtmfInfo)
|
H A D | iril.h.txt | 247 …2_t SendDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo& dtmfInfo) = 0; 249 …_t StartDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo& dtmfInfo) = 0; 251 …2_t StopDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo& dtmfInfo) = 0;
|
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/ril_v1_0/cpp_target/ril/v1_0/ |
H A D | ril_service.h.txt | 95 …endDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_0::DtmfInfo& dtmfInfo) override; 97 …artDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_0::DtmfInfo& dtmfInfo) override; 99 …topDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_0::DtmfInfo& dtmfInfo) override;
|
H A D | ril_proxy.h.txt | 135 …endDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_0::DtmfInfo& dtmfInfo) override; 137 …artDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_0::DtmfInfo& dtmfInfo) override; 139 …topDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_0::DtmfInfo& dtmfInfo) override; 387 …int32_t SendDtmf_(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_0::DtmfInfo& dtmfInfo, 390 …nt32_t StartDtmf_(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_0::DtmfInfo& dtmfInfo, 393 …int32_t StopDtmf_(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_0::DtmfInfo& dtmfInfo,
|
H A D | iril.h.txt | 239 …2_t SendDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_0::DtmfInfo& dtmfInfo) = 0; 241 …_t StartDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_0::DtmfInfo& dtmfInfo) = 0; 243 …2_t StopDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_0::DtmfInfo& dtmfInfo) = 0;
|
H A D | ril_service.cpp.txt | 188 …Service::SendDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_0::DtmfInfo& dtmfInfo) 193 …ervice::StartDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_0::DtmfInfo& dtmfInfo) 198 …Service::StopDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_0::DtmfInfo& dtmfInfo)
|
H A D | ril_proxy.cpp.txt | 282 const OHOS::HDI::Ril::V1_0::DtmfInfo& dtmfInfo) 288 const OHOS::HDI::Ril::V1_0::DtmfInfo& dtmfInfo) 294 const OHOS::HDI::Ril::V1_0::DtmfInfo& dtmfInfo) 1868 const OHOS::HDI::Ril::V1_0::DtmfInfo& dtmfInfo, const sptr<IRemoteObject> remote) 1889 if (!OHOS::HDI::Ril::V1_0::DtmfInfoBlockMarshalling(rilData, dtmfInfo)) { 1890 HDF_LOGE("%{public}s: write dtmfInfo failed!", __func__); 1908 const OHOS::HDI::Ril::V1_0::DtmfInfo& dtmfInfo, const sptr<IRemoteObject> remote) 1929 if (!OHOS::HDI::Ril::V1_0::DtmfInfoBlockMarshalling(rilData, dtmfInfo)) { 1930 HDF_LOGE("%{public}s: write dtmfInfo failed!", __func__); 1969 if (!OHOS::HDI::Ril::V1_0::DtmfInfoBlockMarshalling(rilData, dtmfInfo)) { [all …]
|
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/ril_v1_2/cpp_target/ril/v1_2/ |
H A D | ril_service.h.txt | 106 …endDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo& dtmfInfo) override; 108 …artDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo& dtmfInfo) override; 110 …topDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo& dtmfInfo) override;
|
H A D | ril_proxy.h.txt | 147 …endDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo& dtmfInfo) override; 149 …artDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo& dtmfInfo) override; 151 …topDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo& dtmfInfo) override;
|
H A D | ril_service.cpp.txt | 214 …Service::SendDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo& dtmfInfo) 219 …ervice::StartDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo& dtmfInfo) 224 …Service::StopDtmf(int32_t slotId, int32_t serialId, const OHOS::HDI::Ril::V1_1::DtmfInfo& dtmfInfo)
|
H A D | ril_proxy.cpp.txt | 354 const OHOS::HDI::Ril::V1_1::DtmfInfo& dtmfInfo) 356 … return OHOS::HDI::Ril::V1_1::RilProxy::SendDtmf_(slotId, serialId, dtmfInfo, GetCurrentRemote()); 360 const OHOS::HDI::Ril::V1_1::DtmfInfo& dtmfInfo) 362 … return OHOS::HDI::Ril::V1_1::RilProxy::StartDtmf_(slotId, serialId, dtmfInfo, GetCurrentRemote()); 366 const OHOS::HDI::Ril::V1_1::DtmfInfo& dtmfInfo) 368 … return OHOS::HDI::Ril::V1_1::RilProxy::StopDtmf_(slotId, serialId, dtmfInfo, GetCurrentRemote());
|
/ohos5.0/drivers/interface/ril/v1_0/ |
H A D | IRil.idl | 527 * @param dtmfInfo DTMF information. For details, see {@link DtmfInfo}. 535 [oneway] SendDtmf([in] int slotId, [in] int serialId, [in] struct DtmfInfo dtmfInfo); 542 * @param dtmfInfo DTMF information. For details, see {@link DtmfInfo}. 550 [oneway] StartDtmf([in] int slotId, [in] int serialId, [in] struct DtmfInfo dtmfInfo); 557 * @param dtmfInfo DTMF information. For details, see {@link DtmfInfo}. 565 [oneway] StopDtmf([in] int slotId, [in] int serialId, [in] struct DtmfInfo dtmfInfo);
|