/ohos5.0/base/telephony/cellular_call/test/fuzztest/satellitecallrequest_fuzzer/ |
H A D | satellitecallrequest_fuzzer.cpp | 41 DialRequestStruct dialRequest; in DoSomethingInterestingWithMyAPI() local 42 dialRequest.phoneNum = phoneNum; in DoSomethingInterestingWithMyAPI() 43 cellularCallConnectionSatellite->DialRequest(slotId, dialRequest); in DoSomethingInterestingWithMyAPI()
|
/ohos5.0/base/telephony/cellular_call/test/fuzztest/dialrequest_fuzzer/ |
H A D | dialrequest_fuzzer.cpp | 39 DialRequestStruct dialRequest; in DoSomethingInterestingWithMyAPI() local 40 dialRequest.phoneNum = phoneNum; in DoSomethingInterestingWithMyAPI() 47 cellularCallConnectionCS->DialRequest(slotId, dialRequest); in DoSomethingInterestingWithMyAPI()
|
/ohos5.0/base/telephony/cellular_call/services/connection/src/ |
H A D | cellular_call_connection_ims.cpp | 27 int32_t CellularCallConnectionIMS::DialRequest(int32_t slotId, const ImsDialInfoStruct &dialRequest) in DialRequest() argument 34 … slotId, INVALID_PARAMETER, dialRequest.videoState, TELEPHONY_ERR_MEMSET_FAIL, "memset_s error"); in DialRequest() 37 UpdateCallNumber(dialRequest.phoneNum); in DialRequest() 47 … slotId, INVALID_PARAMETER, dialRequest.videoState, TELEPHONY_ERR_STRCPY_FAIL, "strcpy_s fail"); in DialRequest() 51 callInfo.videoState = dialRequest.videoState; in DialRequest() 55 … CellularCallHiSysEvent::WriteDialCallFaultEvent(slotId, INVALID_PARAMETER, dialRequest.videoState, in DialRequest() 59 return DelayedSingleton<ImsCallClient>::GetInstance()->Dial(callInfo, dialRequest.clirMode); in DialRequest()
|
H A D | cellular_call_connection_satellite.cpp | 28 … CellularCallConnectionSatellite::DialRequest(int32_t slotId, const DialRequestStruct &dialRequest) in DialRequest() argument 38 UpdateCallNumber(dialRequest.phoneNum); in DialRequest() 59 … return DelayedSingleton<SatelliteCallClient>::GetInstance()->Dial(callInfo, dialRequest.clirMode); in DialRequest()
|
H A D | cellular_call_connection_cs.cpp | 25 int32_t CellularCallConnectionCS::DialRequest(int32_t slotId, const DialRequestStruct &dialRequest) in DialRequest() argument 41 UpdateCallNumber(dialRequest.phoneNum); in DialRequest() 43 slotId, RadioEvent::RADIO_DIAL, phoneNumber_, dialRequest.clirMode, handle); in DialRequest()
|
/ohos5.0/base/telephony/cellular_call/services/control/src/ |
H A D | satellite_control.cpp | 65 DialRequestStruct dialRequest; in EncapsulateDialCommon() local 72 dialRequest.phoneNum = phoneNum; in EncapsulateDialCommon() 80 dialRequest.clirMode = clirMode; in EncapsulateDialCommon() 88 return satelliteConnection.DialRequest(slotId, dialRequest); in EncapsulateDialCommon()
|
H A D | cs_control.cpp | 131 DialRequestStruct dialRequest; in EncapsulateDialCommon() local 138 dialRequest.phoneNum = phoneNum; in EncapsulateDialCommon() 146 dialRequest.clirMode = clirMode; in EncapsulateDialCommon() 160 return csConnection.DialRequest(slotId, dialRequest); in EncapsulateDialCommon()
|
/ohos5.0/base/telephony/cellular_call/test/unittest/satellitetest/ |
H A D | zero_branch_test.cpp | 178 DialRequestStruct dialRequest; variable 179 callConn.DialRequest(SIM1_SLOTID, dialRequest);
|
/ohos5.0/base/telephony/cellular_call/services/connection/include/ |
H A D | cellular_call_connection_satellite.h | 43 int32_t DialRequest(int32_t slotId, const DialRequestStruct &dialRequest);
|
H A D | cellular_call_connection_cs.h | 43 int32_t DialRequest(int32_t slotId, const DialRequestStruct &dialRequest);
|
H A D | cellular_call_connection_ims.h | 44 int32_t DialRequest(int32_t slotId, const ImsDialInfoStruct &dialRequest);
|
/ohos5.0/base/telephony/cellular_call/test/unittest/imstest/ |
H A D | zero_branch_test.cpp | 974 ImsDialInfoStruct dialRequest; variable 978 ASSERT_EQ(callConn.DialRequest(SIM1_SLOTID, dialRequest), TELEPHONY_ERR_IPC_CONNECT_STUB_FAIL); 997 ASSERT_EQ(callConn.DialRequest(SIM1_SLOTID, dialRequest), TELEPHONY_SUCCESS);
|