Home
last modified time | relevance | path

Searched refs:dtmfInfo (Results 1 – 25 of 35) sorted by relevance

12

/ohos5.0/base/telephony/ril_adapter/test/unittest/ril_adapter_gtest/
H A Dril_call_test.cpp1071 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 Dtel_ril_call.cpp456 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 Dril_interface_test.cpp328 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 Dhril_call.cpp379 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 Dhril_manager.cpp554 …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 Dril_impl.cpp207 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 Dhril_call.h61 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 Dhril_manager.h106 …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 Dinterface_i_ril_v10.md53 …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 Dinterface_i_ril_v11.md53 …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 Dril_impl.h71 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 Dril_service.h.txt97 …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 Dril_proxy.h.txt137 …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 Dril_service.cpp.txt193 …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 Diril.h.txt247 …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 Dril_service.h.txt95 …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 Dril_proxy.h.txt135 …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 Diril.h.txt239 …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 Dril_service.cpp.txt188 …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 Dril_proxy.cpp.txt282 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 Dril_service.h.txt106 …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 Dril_proxy.h.txt147 …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 Dril_service.cpp.txt214 …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 Dril_proxy.cpp.txt354 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 DIRil.idl527 * @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);

12