Home
last modified time | relevance | path

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

1234

/base/telephony/call_manager/test/fuzztest/startdtmf_fuzzer/
H A Dstartdtmf_fuzzer.cpp28 void StartDtmf(const uint8_t *data, size_t size) in StartDtmf() function
91 StartDtmf(data, size); in DoSomethingInterestingWithMyAPI()
/base/telephony/call_manager/frameworks/native/include/
H A Di_bluetooth_call.h43 virtual int32_t StartDtmf(char str) = 0;
H A Dbluetooth_call_proxy.h100 * StartDtmf
106 int32_t StartDtmf(char str) override;
/base/telephony/call_manager/test/unittest/ui_client/
H A Dbluetooth_call_test.h73 void StartDtmf();
H A Dbluetooth_call_test.cpp231 memberFuncMap_[static_cast<uint32_t>(BluetoothCallFuncCode::TEST_START_DTMF)] = &BluetoothCallTest::StartDtmf; in InitFunMap()
397 void BluetoothCallTest::StartDtmf() in StartDtmf() function in OHOS::Telephony::BluetoothCallTest
400 std::cout << "------StartDtmf------" << std::endl; in StartDtmf()
403 int32_t ret = bluetoothCallClient.StartDtmf(c); in StartDtmf()
/base/telephony/call_manager/services/bluetooth/include/
H A Dbluetooth_call_service.h88 * StartDtmf
94 int32_t StartDtmf(char str) override;
/base/telephony/call_manager/interfaces/innerkits/
H A Dbluetooth_call_client.h132 int32_t StartDtmf(char str);
H A Dcellular_call_proxy.h190 int32_t StartDtmf(char cDtmfCode, const CellularCallInfo &callInfo) override;
/base/telephony/call_manager/services/call/include/
H A Dcarrier_call.h39 int32_t StartDtmf(char str) override;
H A Dott_call.h39 int32_t StartDtmf(char str) override;
/base/telephony/call_manager/test/fuzztest/bluetoothdialcall_fuzzer/
H A Dbluetoothdialcall_fuzzer.cpp159 void StartDtmf(const uint8_t *data, size_t size) in StartDtmf() function
217 StartDtmf(data, size); in DoSomethingInterestingWithMyAPI()
/base/telephony/cellular_call/test/unittest/satellitetest/
H A Dsatellite_test.cpp248 ret = telephonyService->StartDtmf(code, callInfo); in HWTEST_F()
256 ret = telephonyService->StartDtmf(code, callInfo); in HWTEST_F()
283 ret = telephonyService->StartDtmf(code, callInfo); in HWTEST_F()
290 ret = telephonyService->StartDtmf(code, callInfo); in HWTEST_F()
/base/telephony/call_manager/frameworks/native/src/
H A Dbluetooth_call_proxy.cpp66 int32_t BluetoothCallProxy::StartDtmf(char str) in StartDtmf() function in OHOS::Telephony::BluetoothCallProxy
77 TELEPHONY_LOGE("Function StartDtmf! errCode:%{public}d", error); in StartDtmf()
H A Dbluetooth_call_client.cpp214 int32_t BluetoothCallClient::StartDtmf(char str) in StartDtmf() function in OHOS::Telephony::BluetoothCallClient
218 return g_bluetoothCallProxyPtr->StartDtmf(str); in StartDtmf()
/base/telephony/call_manager/services/call/src/
H A Dcarrier_call.cpp296 int32_t CarrierCall::StartDtmf(char str) in StartDtmf() function in OHOS::Telephony::CarrierCall
307 return cellularCallConnectionPtr_->StartDtmf(str, callInfo); in StartDtmf()
/base/telephony/call_manager/services/bluetooth/src/
H A Dbluetooth_call_service.cpp230 int32_t BluetoothCallService::StartDtmf(char str) in StartDtmf() function in OHOS::Telephony::BluetoothCallService
248 return callControlManagerPtr_->StartDtmf(callId, str); in StartDtmf()
/base/telephony/cellular_call/vendor/ims/test/ui_client/
H A Dims_unit_test.h52 int32_t StartDtmf(const sptr<ImsCallInterface> &imsCallSerivce) const;
/base/telephony/ril_adapter/interfaces/innerkits/include/
H A Dhril_vendor_call_defs.h688 void (*StartDtmf)(const ReqDataInfo *requestInfo, CallDtmfInfo info); member
/base/telephony/cellular_call/test/unittest/cstest/
H A Dcs_test.cpp86 requestFuncMap_[static_cast<int32_t>(CellularCallInterfaceCode::START_DTMF)] = &CsTest::StartDtmf; in SetUp()
278 int32_t CsTest::StartDtmf(const sptr<CellularCallInterface> &telephonyService) const in StartDtmf() function in OHOS::Telephony::CsTest
280 std::cout << "test StartDtmf entry." << std::endl; in StartDtmf()
290 return telephonyService->StartDtmf(cDtmfCode, callInfo); in StartDtmf()
523 "17:RegisterCallBack\n18:UnRegisterCallBack\n100:StartDtmf\n101:StopDtmf\n102:SendDtmf\n" in InputNumForInterface()
H A Dcs_test.h113 int32_t StartDtmf(const sptr<CellularCallInterface> &telephonyService) const;
/base/telephony/call_manager/test/unittest/call_manager_gtest/src/
H A Dcall_manager4_gtest.cpp547 /********************************************* Test StartDtmf() ***********************************************/
551 * @tc.name Import callId abcd, test StartDtmf(), return non 0
562 EXPECT_NE(CallManagerGtest::clientPtr_->StartDtmf(callId, str), RETURN_VALUE_IS_ZERO); in HWTEST_F()
567 * @tc.name Import callId 100, test StartDtmf(), return non 0
578 EXPECT_NE(CallManagerGtest::clientPtr_->StartDtmf(callId, str), RETURN_VALUE_IS_ZERO); in HWTEST_F()
583 * @tc.name Import callId 100, test StartDtmf(), return non 0
594 EXPECT_NE(bluetoothCallClient.StartDtmf(str), RETURN_VALUE_IS_ZERO); in HWTEST_F()
599 * @tc.name Import callId abcd, test StartDtmf(), return non 0
620 EXPECT_EQ(CallManagerGtest::clientPtr_->StartDtmf(g_newCallId, '1'), RETURN_VALUE_IS_ZERO); in HWTEST_F()
/base/telephony/call_manager/services/telephony_interaction/include/
H A Dcellular_call_connection.h143 * StartDtmf
150 int StartDtmf(char cDTMFCode, const CellularCallInfo &callInfo);
/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;
/base/telephony/cellular_call/services/control/include/
H A Dcontrol_base.h288 * StartDtmf
300 int32_t StartDtmf(T &&t, char cDtmfCode, const CellularCallInfo &callInfo) const in StartDtmf() function in OHOS::Telephony::ControlBase
311 TELEPHONY_LOGD("ControlBase::StartDtmf start"); in StartDtmf()
315 TELEPHONY_LOGE("StartDtmf, error type: connection is null"); in StartDtmf()
319 TELEPHONY_LOGE("StartDtmf return, error type: cDtmfCode invalid."); in StartDtmf()
/base/telephony/cellular_call/vendor/ims/services/ims_call/include/
H A Dims_call.h146 * IMS StartDtmf interface
153 int32_t StartDtmf(int32_t slotId, char cDtmfCode, int32_t index) override;

Completed in 16 milliseconds

1234