/base/telephony/call_manager/services/call/src/ |
D | carrier_call.cpp | 53 CellularCallInfo callInfo; in CarrierAnswerCall() local 61 ret = PackCellularCallInfo(callInfo); in CarrierAnswerCall() 71 ret = cellularCallConnectionPtr_->Answer(callInfo); in CarrierAnswerCall() 81 CellularCallInfo callInfo; in CarrierRejectCall() local 86 ret = PackCellularCallInfo(callInfo); in CarrierRejectCall() 90 slotId_, callInfo.callId, ret, "Reject PackCellularCallInfo failed"); in CarrierRejectCall() 98 ret = cellularCallConnectionPtr_->Reject(callInfo); in CarrierRejectCall() 100 ret = cellularCallConnectionPtr_->HangUp(callInfo, CallSupplementType::TYPE_DEFAULT); in CarrierRejectCall() 112 CellularCallInfo callInfo; in CarrierHangUpCall() local 113 ret = PackCellularCallInfo(callInfo); in CarrierHangUpCall() [all …]
|
D | call_incoming_filter_manager.cpp | 42 int32_t CallIncomingFilterManager::PackCellularCallInfo(CellularCallInfo &callInfo, const CallDetai… in PackCellularCallInfo() argument 44 callInfo.callType = info.callType; in PackCellularCallInfo() 45 callInfo.index = info.index; in PackCellularCallInfo() 46 callInfo.slotId = info.accountId; in PackCellularCallInfo() 47 callInfo.accountId = info.accountId; in PackCellularCallInfo() 48 if (memset_s(callInfo.phoneNum, kMaxNumberLen, 0, kMaxNumberLen) != EOK) { in PackCellularCallInfo() 52 if (memcpy_s(callInfo.phoneNum, kMaxNumberLen, info.phoneNum, kMaxNumberLen) != EOK) { in PackCellularCallInfo() 80 CellularCallInfo callInfo; in doIncomingFilter() local 81 if (PackCellularCallInfo(callInfo, info) != TELEPHONY_SUCCESS) { in doIncomingFilter() 84 DelayedSingleton<CellularCallConnection>::GetInstance()->Reject(callInfo); in doIncomingFilter()
|
D | call_request_process.cpp | 364 CellularCallInfo callInfo; in CarrierDialProcess() local 365 ret = PackCellularCallInfo(info, callInfo); in CarrierDialProcess() 373 ret = DelayedSingleton<CellularCallConnection>::GetInstance()->Dial(callInfo); in CarrierDialProcess() 391 CellularCallInfo callInfo; in VoiceMailDialProcess() local 392 int32_t ret = PackCellularCallInfo(info, callInfo); in VoiceMailDialProcess() 399 ret = DelayedSingleton<CellularCallConnection>::GetInstance()->Dial(callInfo); in VoiceMailDialProcess() 409 AppExecFwk::PacMap callInfo; in OttDialProcess() local 410 callInfo.PutStringValue("phoneNumber", info.number); in OttDialProcess() 411 callInfo.PutStringValue("bundleName", info.bundleName); in OttDialProcess() 412 callInfo.PutIntValue("videoState", static_cast<int32_t>(info.videoState)); in OttDialProcess() [all …]
|
/base/telephony/cellular_call/services/manager/src/ |
D | cellular_call_service.cpp | 295 int32_t CellularCallService::Dial(const CellularCallInfo &callInfo) in Dial() argument 297 if (!IsValidSlotId(callInfo.slotId)) { in Dial() 299 …CellularCallHiSysEvent::WriteDialCallFaultEvent(callInfo.accountId, static_cast<int32_t>(callInfo.… in Dial() 300 callInfo.videoState, CALL_ERR_INVALID_SLOT_ID, "invalid slot id"); in Dial() 304 …CellularCallHiSysEvent::WriteDialCallFaultEvent(callInfo.accountId, static_cast<int32_t>(callInfo.… in Dial() 305 … callInfo.videoState, static_cast<int32_t>(CallErrorCode::CALL_ERROR_UNEXPECTED_SRVCC_STATE), in Dial() 310 IsEmergencyPhoneNumber(callInfo.slotId, callInfo.phoneNum, isEcc); in Dial() 311 bool useImsForEmergency = UseImsForEmergency(callInfo, isEcc); in Dial() 312 if (IsNeedIms(callInfo.slotId) || useImsForEmergency) { in Dial() 313 auto imsControl = GetImsControl(callInfo.slotId); in Dial() [all …]
|
/base/telephony/cellular_call/services/control/src/ |
D | cs_control.cpp | 32 int32_t CSControl::Dial(const CellularCallInfo &callInfo, bool isEcc) in Dial() argument 36 callInfo.slotId, static_cast<int32_t>(callInfo.callType), callInfo.videoState); in Dial() 37 int32_t ret = DialPreJudgment(callInfo, isEcc); in Dial() 43 RegServiceState regState = moduleServiceUtils.GetCsRegState(callInfo.slotId); in Dial() 48 PhoneType netType = moduleServiceUtils.GetNetworkStatus(callInfo.slotId); in Dial() 50 return DialGsm(callInfo); in Dial() 53 return DialCdma(callInfo); in Dial() 56 …CellularCallHiSysEvent::WriteDialCallFaultEvent(callInfo.slotId, static_cast<int32_t>(callInfo.cal… in Dial() 57 callInfo.videoState, CALL_ERR_UNSUPPORTED_NETWORK_TYPE, "Network type error"); in Dial() 61 int32_t CSControl::DialCdma(const CellularCallInfo &callInfo) in DialCdma() argument [all …]
|
D | control_base.cpp | 28 int32_t ControlBase::DialPreJudgment(const CellularCallInfo &callInfo, bool isEcc) in DialPreJudgment() argument 30 int32_t ret = CheckAirplaneModeScene(callInfo, isEcc); in DialPreJudgment() 35 std::string dialString(callInfo.phoneNum); in DialPreJudgment() 38 …CellularCallHiSysEvent::WriteDialCallFaultEvent(callInfo.accountId, static_cast<int32_t>(callInfo.… in DialPreJudgment() 39 callInfo.videoState, CALL_ERR_PHONE_NUMBER_EMPTY, "dialString is empty"); in DialPreJudgment() 44 if (!moduleServiceUtils.GetRadioState(callInfo.slotId)) { in DialPreJudgment() 46 …CellularCallHiSysEvent::WriteDialCallFaultEvent(callInfo.accountId, static_cast<int32_t>(callInfo.… in DialPreJudgment() 47 callInfo.videoState, CALL_ERR_GET_RADIO_STATE_FAILED, "radio state error"); in DialPreJudgment() 118 int32_t ControlBase::CheckAirplaneModeScene(const CellularCallInfo &callInfo, bool isEcc) in CheckAirplaneModeScene() argument 123 int32_t ret = HandleEcc(callInfo, isEcc); in CheckAirplaneModeScene() [all …]
|
D | ims_control.cpp | 33 int32_t IMSControl::Dial(const CellularCallInfo &callInfo, bool isEcc) in Dial() argument 37 callInfo.slotId, static_cast<int32_t>(callInfo.callType), callInfo.videoState); in Dial() 38 int32_t ret = DialPreJudgment(callInfo, isEcc); in Dial() 43 RegServiceState regState = moduleServiceUtils.GetPsRegState(callInfo.slotId); in Dial() 49 std::string newPhoneNum(callInfo.phoneNum); in Dial() 56 if (IsNeedExecuteMMI(callInfo.slotId, newPhoneNum, clirMode, true)) { in Dial() 60 return DialJudgment(callInfo.slotId, newPhoneNum, clirMode, callInfo.videoState); in Dial() 121 int32_t IMSControl::HangUp(const CellularCallInfo &callInfo, CallSupplementType type) in HangUp() argument 127 connectionMap_, callInfo.index); in HangUp() 137 return pConnection->HangUpRequest(callInfo.slotId, callInfo.phoneNum, callInfo.index); in HangUp() [all …]
|
/base/telephony/cellular_call/test/fuzztest/separateconference_fuzzer/ |
D | separateconference_fuzzer.cpp | 53 CellularCallInfo callInfo; in DoSomethingInterestingWithMyAPI() local 54 callInfo.slotId = slotId; in DoSomethingInterestingWithMyAPI() 55 callInfo.callId = callId; in DoSomethingInterestingWithMyAPI() 56 callInfo.accountId = accountId; in DoSomethingInterestingWithMyAPI() 57 callInfo.videoState = videoState; in DoSomethingInterestingWithMyAPI() 58 callInfo.index = index; in DoSomethingInterestingWithMyAPI() 59 callInfo.callType = CallType::TYPE_CS; in DoSomethingInterestingWithMyAPI() 60 if (strcpy_s(callInfo.phoneNum, length, telNum.c_str()) != EOK) { in DoSomethingInterestingWithMyAPI() 63 cSControl->DialCdma(callInfo); in DoSomethingInterestingWithMyAPI() 64 cSControl->DialGsm(callInfo); in DoSomethingInterestingWithMyAPI() [all …]
|
/base/telephony/cellular_call/test/fuzztest/reporthungupinfo_fuzzer/ |
D | reporthungupinfo_fuzzer.cpp | 53 CellularCallInfo callInfo; in DoSomethingInterestingWithMyAPI() local 54 callInfo.slotId = slotId; in DoSomethingInterestingWithMyAPI() 55 callInfo.callId = callId; in DoSomethingInterestingWithMyAPI() 56 callInfo.accountId = accountId; in DoSomethingInterestingWithMyAPI() 57 callInfo.videoState = videoState; in DoSomethingInterestingWithMyAPI() 58 callInfo.index = index; in DoSomethingInterestingWithMyAPI() 59 callInfo.callType = CallType::TYPE_CS; in DoSomethingInterestingWithMyAPI() 60 if (strcpy_s(callInfo.phoneNum, length, telNum.c_str()) != EOK) { in DoSomethingInterestingWithMyAPI() 64 iMSControl->Dial(callInfo, isEcc); in DoSomethingInterestingWithMyAPI() 65 iMSControl->HangUp(callInfo, type); in DoSomethingInterestingWithMyAPI() [all …]
|
/base/telephony/cellular_call/test/unittest/cstest/ |
D | cs_test.cpp | 123 CellularCallInfo callInfo; in Dial() local 124 if (memset_s(&callInfo, sizeof(callInfo), 0, sizeof(callInfo)) != EOK) { in Dial() 129 std::cin >> callInfo.phoneNum; in Dial() 130 callInfo.videoState = 1; in Dial() 134 callInfo.slotId = slotId; in Dial() 135 return telephonyService->Dial(callInfo); in Dial() 141 CellularCallInfo callInfo; in HangUp() local 142 if (memset_s(&callInfo, sizeof(callInfo), 0, sizeof(callInfo)) != EOK) { in HangUp() 148 std::cin >> callInfo.phoneNum; in HangUp() 149 callInfo.videoState = 1; in HangUp() [all …]
|
D | cs_test.h | 128 …nt32_t InitCellularCallInfo(int32_t accountId, std::string phonenumber, CellularCallInfo &callInfo) in InitCellularCallInfo() argument 130 callInfo.accountId = accountId; in InitCellularCallInfo() 131 callInfo.slotId = accountId; in InitCellularCallInfo() 132 callInfo.index = accountId; in InitCellularCallInfo() 133 callInfo.callType = CallType::TYPE_CS; in InitCellularCallInfo() 134 callInfo.videoState = 0; // 0 means audio in InitCellularCallInfo() 135 if (memset_s(callInfo.phoneNum, kMaxNumberLen, 0, kMaxNumberLen) != EOK) { in InitCellularCallInfo() 141 …if (memcpy_s(callInfo.phoneNum, kMaxNumberLen, phonenumber.c_str(), phonenumber.length()) != EOK) { in InitCellularCallInfo() 162 CellularCallInfo callInfo; in TestDialCallByCs() local 164 ret = InitCellularCallInfo(slotId, code, callInfo); in TestDialCallByCs() [all …]
|
/base/telephony/cellular_call/services/connection/src/ |
D | cellular_call_connection_ims.cpp | 30 ImsCallInfo callInfo; in DialRequest() local 31 if (memset_s(&callInfo, sizeof(callInfo), 0, sizeof(callInfo)) != EOK) { in DialRequest() 43 if (strcpy_s(callInfo.phoneNum, cpyLen, phoneNumber_.c_str()) != EOK) { in DialRequest() 51 callInfo.videoState = dialRequest.videoState; in DialRequest() 52 callInfo.slotId = slotId; in DialRequest() 59 return DelayedSingleton<ImsCallClient>::GetInstance()->Dial(callInfo, dialRequest.clirMode); in DialRequest() 66 ImsCallInfo callInfo; in HangUpRequest() local 67 if (memset_s(&callInfo, sizeof(callInfo), 0, sizeof(callInfo)) != EOK) { in HangUpRequest() 74 if (strcpy_s(callInfo.phoneNum, strlen(phoneNum.c_str()) + 1, phoneNum.c_str()) != EOK) { in HangUpRequest() 78 callInfo.slotId = slotId; in HangUpRequest() [all …]
|
/base/telephony/call_manager/services/telephony_interaction/include/ |
D | cellular_call_connection.h | 46 int Dial(const CellularCallInfo &callInfo); 56 int HangUp(const CellularCallInfo &callInfo, CallSupplementType type); 65 int Reject(const CellularCallInfo &callInfo); 74 int Answer(const CellularCallInfo &callInfo); 83 int HoldCall(const CellularCallInfo &callInfo); 92 int UnHoldCall(const CellularCallInfo &callInfo); 101 int SwitchCall(const CellularCallInfo &callInfo); 121 int CombineConference(const CellularCallInfo &callInfo); 130 int SeparateConference(const CellularCallInfo &callInfo); 139 int KickOutFromConference(const CellularCallInfo &callInfo); [all …]
|
/base/telephony/call_manager/services/telephony_interaction/src/ |
D | cellular_call_connection.cpp | 177 int CellularCallConnection::Dial(const CellularCallInfo &callInfo) in Dial() argument 181 …CallManagerHisysevent::WriteDialCallFaultEvent(callInfo.accountId, static_cast<int32_t>(callInfo.c… in Dial() 182 callInfo.videoState, TELEPHONY_ERR_IPC_CONNECT_STUB_FAIL, "ReConnectService failed"); in Dial() 185 TELEPHONY_LOGI("callType:%{public}d", callInfo.callType); in Dial() 186 int errCode = cellularCallInterfacePtr_->Dial(callInfo); in Dial() 194 int CellularCallConnection::HangUp(const CellularCallInfo &callInfo, CallSupplementType type) in HangUp() argument 199 …callInfo.accountId, callInfo.callId, TELEPHONY_ERR_IPC_CONNECT_STUB_FAIL, "HangUp ipc reconnect fa… in HangUp() 202 int errCode = cellularCallInterfacePtr_->HangUp(callInfo, type); in HangUp() 210 int CellularCallConnection::Reject(const CellularCallInfo &callInfo) in Reject() argument 215 …callInfo.accountId, callInfo.callId, TELEPHONY_ERR_IPC_CONNECT_STUB_FAIL, "Reject ipc reconnect fa… in Reject() [all …]
|
/base/telephony/cellular_call/services/control/include/ |
D | control_base.h | 53 virtual int32_t Dial(const CellularCallInfo &callInfo, bool isEcc) = 0; 68 virtual int32_t HangUp(const CellularCallInfo &callInfo, CallSupplementType type) = 0; 81 virtual int32_t Answer(const CellularCallInfo &callInfo) = 0; 94 virtual int32_t Reject(const CellularCallInfo &callInfo) = 0; 171 int32_t DialPreJudgment(const CellularCallInfo &callInfo, bool isEcc); 307 int32_t StartDtmf(T &&t, char cDtmfCode, const CellularCallInfo &callInfo) const in StartDtmf() argument 319 … auto pConnection = FindConnectionByIndex<T &, decltype(&t.begin()->second)>(t, callInfo.index); in StartDtmf() 329 return pConnection->StartDtmfRequest(callInfo.slotId, cDtmfCode, pConnection->GetIndex()); in StartDtmf() 344 int32_t StopDtmf(T &&t, const CellularCallInfo &callInfo) const in StopDtmf() argument 356 … auto pConnection = FindConnectionByIndex<T &, decltype(&t.begin()->second)>(t, callInfo.index); in StopDtmf() [all …]
|
D | cs_control.h | 47 int32_t Dial(const CellularCallInfo &callInfo, bool isEcc) override; 61 int32_t HangUp(const CellularCallInfo &callInfo, CallSupplementType type) override; 74 int32_t Answer(const CellularCallInfo &callInfo) override; 87 int32_t Reject(const CellularCallInfo &callInfo) override; 184 int32_t PostDialProceed(const CellularCallInfo &callInfo, const bool proceed); 226 CallReportInfo EncapsulationCallReportInfo(int32_t slotId, const CallInfo &callInfo); 242 int32_t DialCdma(const CellularCallInfo &callInfo); 250 int32_t DialGsm(const CellularCallInfo &callInfo);
|
D | ims_control.h | 42 int32_t Dial(const CellularCallInfo &callInfo, bool isEcc) override; 51 int32_t HangUp(const CellularCallInfo &callInfo, CallSupplementType type) override; 59 int32_t Answer(const CellularCallInfo &callInfo) override; 67 int32_t Reject(const CellularCallInfo &callInfo) override; 137 int32_t UpdateImsCallMode(const CellularCallInfo &callInfo, ImsCallMode mode); 186 int32_t PostDialProceed(const CellularCallInfo &callInfo, const bool proceed); 245 CallReportInfo EncapsulationCallReportInfo(int32_t slotId, const ImsCurrentCall &callInfo);
|
/base/telephony/call_manager/interfaces/innerkits/ |
D | cellular_call_interface.h | 32 virtual int32_t Dial(const CellularCallInfo &callInfo) = 0; 41 virtual int32_t HangUp(const CellularCallInfo &callInfo, CallSupplementType type) = 0; 49 virtual int32_t Answer(const CellularCallInfo &callInfo) = 0; 57 virtual int32_t Reject(const CellularCallInfo &callInfo) = 0; 65 virtual int32_t HoldCall(const CellularCallInfo &callInfo) = 0; 73 virtual int32_t UnHoldCall(const CellularCallInfo &callInfo) = 0; 81 virtual int32_t SwitchCall(const CellularCallInfo &callInfo) = 0; 99 virtual int32_t CombineConference(const CellularCallInfo &callInfo) = 0; 107 virtual int32_t SeparateConference(const CellularCallInfo &callInfo) = 0; 124 virtual int32_t KickOutFromConference(const CellularCallInfo &callInfo) = 0; [all …]
|
D | cellular_call_proxy.h | 45 int32_t Dial(const CellularCallInfo &callInfo) override; 54 int32_t HangUp(const CellularCallInfo &callInfo, CallSupplementType type) override; 62 int32_t Reject(const CellularCallInfo &callInfo) override; 70 int32_t Answer(const CellularCallInfo &callInfo) override; 78 int32_t HoldCall(const CellularCallInfo &callInfo) override; 86 int32_t UnHoldCall(const CellularCallInfo &callInfo) override; 94 int32_t SwitchCall(const CellularCallInfo &callInfo) override; 112 int32_t CombineConference(const CellularCallInfo &callInfo) override; 120 int32_t SeparateConference(const CellularCallInfo &callInfo) override; 137 int32_t KickOutFromConference(const CellularCallInfo &callInfo) override; [all …]
|
/base/telephony/cellular_call/test/fuzztest/imsclient_fuzzer/ |
D | imsclient_fuzzer.cpp | 51 ImsCallInfo callInfo; in TestImsCallClientWithCallInfo() local 52 if (memset_s(&callInfo, sizeof(struct ImsCallInfo), 0x00, sizeof(struct ImsCallInfo)) != EOK) { in TestImsCallClientWithCallInfo() 55 size_t length = std::min(static_cast<size_t>(sizeof(callInfo.phoneNum) - 1), size); in TestImsCallClientWithCallInfo() 62 if (strcpy_s(callInfo.phoneNum, sizeof(callInfo.phoneNum), number.c_str()) != EOK) { in TestImsCallClientWithCallInfo() 65 callInfo.slotId = slotId; in TestImsCallClientWithCallInfo() 66 callInfo.videoState = videoState; in TestImsCallClientWithCallInfo() 67 callInfo.index = index; in TestImsCallClientWithCallInfo() 70 imsCallClient->Dial(callInfo, static_cast<CLIRMode>(mode)); in TestImsCallClientWithCallInfo() 71 imsCallClient->HangUp(callInfo); in TestImsCallClientWithCallInfo() 72 imsCallClient->Answer(callInfo); in TestImsCallClientWithCallInfo() [all …]
|
/base/telephony/cellular_call/services/manager/include/ |
D | cellular_call_service.h | 100 int32_t Dial(const CellularCallInfo &callInfo) override; 109 int32_t HangUp(const CellularCallInfo &callInfo, CallSupplementType type) override; 117 int32_t Reject(const CellularCallInfo &callInfo) override; 125 int32_t Answer(const CellularCallInfo &callInfo) override; 133 int32_t HoldCall(const CellularCallInfo &callInfo) override; 141 int32_t UnHoldCall(const CellularCallInfo &callInfo) override; 149 int32_t SwitchCall(const CellularCallInfo &callInfo) override; 176 int32_t CombineConference(const CellularCallInfo &callInfo) override; 184 int32_t SeparateConference(const CellularCallInfo &callInfo) override; 201 int32_t KickOutFromConference(const CellularCallInfo &callInfo) override; [all …]
|
/base/telephony/cellular_call/test/fuzztest/setimsfeaturevalue_fuzzer/ |
D | setimsfeaturevalue_fuzzer.cpp | 225 CellularCallInfo callInfo; in Reject() local 226 callInfo.slotId = slotId; in Reject() 227 callInfo.callId = callId; in Reject() 228 callInfo.accountId = accountId; in Reject() 229 callInfo.videoState = videoState; in Reject() 230 callInfo.index = index; in Reject() 231 if (strcpy_s(callInfo.phoneNum, length, telNum.c_str()) != EOK) { in Reject() 236 dataMessageParcel.WriteRawData(static_cast<const void *>(&callInfo), sizeof(CellularCallInfo)); in Reject() 261 CellularCallInfo callInfo; in HangUp() local 262 callInfo.slotId = slotId; in HangUp() [all …]
|
/base/telephony/cellular_call/services/ims_service_interaction/src/ |
D | ims_call_proxy.cpp | 24 int32_t ImsCallProxy::Dial(const ImsCallInfo &callInfo, CLIRMode mode) in Dial() argument 28 TELEPHONY_LOGE("[slot%{public}d]Write descriptor token fail!", callInfo.slotId); in Dial() 29 …CellularCallHiSysEvent::WriteDialCallFaultEvent(callInfo.slotId, INVALID_PARAMETER, callInfo.video… in Dial() 33 if (!in.WriteRawData((const void *)&callInfo, sizeof(ImsCallInfo))) { in Dial() 34 TELEPHONY_LOGE("[slot%{public}d]Write callInfo fail!", callInfo.slotId); in Dial() 35 …CellularCallHiSysEvent::WriteDialCallFaultEvent(callInfo.slotId, INVALID_PARAMETER, callInfo.video… in Dial() 40 TELEPHONY_LOGE("[slot%{public}d]Write mode fail!", callInfo.slotId); in Dial() 41 …CellularCallHiSysEvent::WriteDialCallFaultEvent(callInfo.slotId, INVALID_PARAMETER, callInfo.video… in Dial() 47 TELEPHONY_LOGE("[slot%{public}d]Remote is null", callInfo.slotId); in Dial() 48 …CellularCallHiSysEvent::WriteDialCallFaultEvent(callInfo.slotId, INVALID_PARAMETER, callInfo.video… in Dial() [all …]
|
/base/telephony/cellular_call/vendor/ims/test/ui_client/ |
D | ims_unit_test.cpp | 137 ImsCallInfo callInfo; in Dial() local 138 if (memset_s(&callInfo, sizeof(callInfo), 0, sizeof(callInfo)) != EOK) { in Dial() 143 std::cin >> callInfo.phoneNum; in Dial() 144 callInfo.videoState = 1; in Dial() 145 callInfo.slotId = 0; in Dial() 147 imsCallPtr->Dial(callInfo, mode); in Dial() 154 ImsCallInfo callInfo; in HangUp() local 155 if (memset_s(&callInfo, sizeof(callInfo), 0, sizeof(callInfo)) != EOK) { in HangUp() 160 std::cin >> callInfo.phoneNum; in HangUp() 161 callInfo.videoState = 1; in HangUp() [all …]
|
/base/telephony/cellular_call/test/fuzztest/getcallrestriction_fuzzer/ |
D | getcallrestriction_fuzzer.cpp | 245 CellularCallInfo callInfo; in Dial() local 246 callInfo.slotId = slotId; in Dial() 247 callInfo.callId = callId; in Dial() 248 callInfo.accountId = accountId; in Dial() 249 callInfo.videoState = videoState; in Dial() 250 callInfo.index = index; in Dial() 251 if (strcpy_s(callInfo.phoneNum, length, telNum.c_str()) != EOK) { in Dial() 256 dataMessageParcel.WriteRawData(static_cast<const void *>(&callInfo), sizeof(CellularCallInfo)); in Dial() 296 CellularCallInfo callInfo; in KickOutFromConference() local 297 callInfo.slotId = slotId; in KickOutFromConference() [all …]
|