| /base/telephony/cellular_call/services/utils/include/ |
| D | cellular_call_supplement.h | 296 * @param flag, {@code SS_FROM_MMI_CODE} mean the request action come from dial api 308 * @param flag, {@code SS_FROM_MMI_CODE} mean the request action come from dial api 320 * @param flag, {@code SS_FROM_MMI_CODE} mean the request action come from dial api 332 * @param flag, {@code SS_FROM_MMI_CODE} mean the request action come from dial api 344 * @param flag, {@code SS_FROM_MMI_CODE} mean the request action come from dial api 356 * @param flag, {@code SS_FROM_MMI_CODE} mean the request action come from dial api 368 * @param flag, {@code SS_FROM_MMI_CODE} mean the request action come from dial api 380 * @param flag, {@code SS_FROM_MMI_CODE} mean the request action come from dial api 392 * @param flag, {@code SS_FROM_MMI_CODE} mean the request action come from dial api 404 * @param flag, {@code SS_FROM_MMI_CODE} mean the request action come from dial api [all …]
|
| /base/telephony/call_manager/ |
| D | README.md | 69 …2519577"><a name="p143312519577"></a><a name="p143312519577"></a>function dial(phoneNumber: string… 89 **Table 2** Parameters of the Dial API 147 ### Calling the dial API to Place a Call<a name="section113291522113518"></a> 150 2. Call the **Dial** API in callback or Promise mode. 151 3. Obtain the dialup result. The **Dial** API works in asynchronous mode. The dialup result is r… 159 call.dial(phoneNumber, {extras: false}, (err, value) => { 162 console.error(`failed to dial because ${err.message}`); 166 console.log(`success to dial: ${value}`); 170 let promise = call.dial(phoneNumber, {extras: false}); 173 console.log(`success to dial: ${value}`); [all …]
|
| D | README_zh.md | 79 …2519577"><a name="p143312519577"></a><a name="p143312519577"></a>function dial(phoneNumber: string… 169 call.dial(phoneNumber, {extras: false}, (err, value) => { 172 console.error(`failed to dial because ${err.message}`); 176 console.log(`success to dial: ${value}`); 180 let promise = call.dial(phoneNumber, {extras: false}); 183 console.log(`success to dial: ${value}`); 186 console.error(`failed to dial because ${err.message}`);
|
| /base/telephony/cellular_call/services/control/include/ |
| D | cs_control.h | 42 * CS Dial 47 int32_t Dial(const CellularCallInfo &callInfo, bool isEcc) override; 237 * Dial Cdma 245 * Dial Gsm 253 * Encapsulate Dial Common
|
| D | ims_control.h | 40 * IMS Dial 42 int32_t Dial(const CellularCallInfo &callInfo, bool isEcc) override; 199 * handle dial judgment 210 * Encapsulate Dial Common
|
| D | satellite_control.h | 42 * Dial Satellite 47 int32_t Dial(const CellularCallInfo &callInfo, bool isEcc) override; 197 * Encapsulate Dial Common
|
| /base/telephony/call_manager/interfaces/innerkits/ |
| D | call_manager_errors.h | 48 * Indicates an invalid dial scene, which is used when the dial scene fails to be obtained. 56 * Indicates an invalid dial type, which is used when the dial type fails to be obtained. 160 * Indicates dial failed.
|
| D | call_manager_disconnected_details.h | 264 * Indicates the call disconnect due to dial modified to USSD. 268 * Indicates the call disconnect due to dial modified to SS. 272 * Indicates the call disconnect due to dial modified to dial.
|
| D | cellular_call_ipc_interface_code.h | 24 DIAL = 1, enumerator
|
| /base/telephony/core_service/utils/common/include/ |
| D | telephony_hisysevent.h | 59 * Indicates the dial type is unknown, out of CARRIER, VOICE_MAIL or OTT type. 74 * Indicates the dial scene is invalid. 89 * Indicates the dial is busy, there is already a new call creating/connecting or dialing. 94 * Indicates the dial time is out of range. 114 * Indicates the dial number is not a valid FDN number.
|
| /base/telephony/cellular_call/interfaces/innerkits/satellite/ |
| D | satellite_call_interface.h | 29 * @brief Satellite dial the call interface 36 virtual int32_t Dial(const SatelliteCallInfo &callInfo, CLIRMode mode) = 0;
|
| D | satellite_call_callback_interface.h | 32 * @brief DialSatelliteResponse the result of dial by satellite. 36 * @param info Indicates dial action was success or failure.
|
| D | satellite_call_client.h | 71 * @brief Satellite dial the call interface 78 int32_t Dial(const SatelliteCallInfo &callInfo, CLIRMode mode);
|
| D | satellite_call_proxy.h | 31 int32_t Dial(const SatelliteCallInfo &callInfo, CLIRMode mode) override;
|
| /base/telephony/cellular_call/test/fuzztest/reporthangupinfo_fuzzer/ |
| D | reporthangupinfo_fuzzer.cpp | 65 iMSControl->Dial(callInfo, isEcc); in DoSomethingInterestingWithMyAPI() 76 satelliteControl->Dial(callInfo, isEcc); in DoSomethingInterestingWithMyAPI()
|
| /base/telephony/cellular_call/test/unittest/satellitetest/ |
| D | zero_branch_test.cpp | 97 satelliteControl.Dial(cellularCallInfo, true); 99 satelliteControl.Dial(cellularCallInfo_new, true); 196 callService.Dial(satelliteCallInfo);
|
| /base/telephony/cellular_call/test/fuzztest/satelliteclient_fuzzer/ |
| D | satelliteclient_fuzzer.cpp | 76 satelliteCallClient->Dial(callInfo, static_cast<CLIRMode>(mode)); in TestSatelliteCallClientWithCallInfo() 102 proxy->Dial(callInfo, static_cast<CLIRMode>(mode)); in TestSatelliteCallProxyWithCallInfo()
|
| /base/telephony/cellular_call/test/unittest/cstest/ |
| D | cs_test.cpp | 66 requestFuncMap_[static_cast<int32_t>(CellularCallInterfaceCode::DIAL)] = &CsTest::Dial; in SetUp() 114 int32_t CsTest::Dial(const sptr<CellularCallInterface> &telephonyService) const in Dial() function in OHOS::Telephony::CsTest 116 std::cout << "test Dial entry.\n"; in Dial() 129 return telephonyService->Dial(callInfo); in Dial() 520 … "1:Dial\n2:HangUp\n3:Reject\n4:Answer\n5:HoldCall\n6:UnHoldCall\n7:SwitchCall\n" in InputNumForInterface()
|
| D | cs_test.h | 95 int32_t Dial(const sptr<CellularCallInterface> &telephonyService) const; 173 ret = telephonyService->Dial(callInfo); in TestDialCallByCs()
|
| /base/telephony/call_manager/test/unittest/call_voice_assistant_test/src/ |
| D | call_voice_assistant_test.cpp | 55 std::string dialing = "dial"; 95 std::string dialing = "dial";
|
| /base/telephony/call_manager/frameworks/js/napi/src/ |
| D | call.js | 181 dial: call.dial,
|
| /base/telephony/cellular_call/services/control/src/ |
| D | cs_control.cpp | 33 int32_t CSControl::Dial(const CellularCallInfo &callInfo, bool isEcc) in Dial() function in OHOS::Telephony::CSControl 35 TELEPHONY_LOGI("Dial start"); in Dial() 46 TELEPHONY_LOGE("can not dial."); in Dial() 56 TELEPHONY_LOGE("Dial return, net type error."); in Dial() 79 … callInfo.videoState, CALL_ERR_CALL_COUNTS_EXCEED_LIMIT, "cs cdma dial call state error"); in DialCdma() 109 callInfo.videoState, CALL_ERR_CALL_COUNTS_EXCEED_LIMIT, "cs gsm dial call state error"); in DialGsm() 185 * The "directory number" case shall be handled with dial command D, in HangUp()
|
| /base/telephony/cellular_call/services/manager/src/ |
| D | cellular_call_service.cpp | 303 int32_t CellularCallService::Dial(const CellularCallInfo &callInfo) in Dial() function in OHOS::Telephony::CellularCallService 306 TELEPHONY_LOGE("CellularCallService::Dial return, invalid slot id"); in Dial() 324 TELEPHONY_LOGI("CellularCallService::Dial satelliteControl dial"); in Dial() 327 TELEPHONY_LOGE("CellularCallService::Dial return, satelliteControl create fail"); in Dial() 332 return satelliteControl->Dial(callInfo, isEcc); in Dial() 343 TELEPHONY_LOGI("CellularCallService::Dial ims dial"); in DialNormalCall() 346 TELEPHONY_LOGE("CellularCallService::Dial return, imsControl create fail"); in DialNormalCall() 351 return imsControl->Dial(callInfo, isEcc); in DialNormalCall() 358 TELEPHONY_LOGE("CellularCallService::Dial return, csControl create fail"); in DialNormalCall() 363 return csControl->Dial(callInfo, isEcc); in DialNormalCall()
|
| /base/telephony/cellular_call/services/satellite_service_interaction/src/ |
| D | satellite_call_client.cpp | 149 int32_t SatelliteCallClient::Dial(const SatelliteCallInfo &callInfo, CLIRMode mode) in Dial() function in OHOS::Telephony::SatelliteCallClient 158 return satelliteCallProxy_->Dial(callInfo, mode); in Dial()
|
| /base/telephony/call_manager/services/call/src/ |
| D | call_policy.cpp | 38 TELEPHONY_LOGE("dial type invalid!"); in DialPolicy() 55 TELEPHONY_LOGE("invalid dial scene!"); in DialPolicy() 187 TELEPHONY_LOGE("can not dial video call when any call exist!"); in CanDialMulityCall() 191 TELEPHONY_LOGE("can not dial video call when any call exist!"); in CanDialMulityCall()
|