/base/telephony/cellular_call/services/common/src/ |
H A D | cellular_call_hisysevent.cpp | 77 if (info.callType == CS_CALL_TYPE && info.videoState == VOICE_TYPE) { in WriteDialCallBehaviorEvent() 79 } else if (info.callType == IMS_CALL_TYPE && info.videoState == VOICE_TYPE) { in WriteDialCallBehaviorEvent() 81 } else if (info.callType == IMS_CALL_TYPE && info.videoState == VIDEO_TYPE) { in WriteDialCallBehaviorEvent() 84 TELEPHONY_LOGE("WriteDialCallBehaviorEvent callType is out of range!"); in WriteDialCallBehaviorEvent() 95 if (info.callType == CS_CALL_TYPE && info.videoState == VOICE_TYPE) { in WriteHangUpCallBehaviorEvent() 97 } else if (info.callType == IMS_CALL_TYPE && info.videoState == VOICE_TYPE) { in WriteHangUpCallBehaviorEvent() 99 } else if (info.callType == IMS_CALL_TYPE && info.videoState == VIDEO_TYPE) { in WriteHangUpCallBehaviorEvent() 102 TELEPHONY_LOGE("WriteHangUpCallBehaviorEvent callType is out of range!"); in WriteHangUpCallBehaviorEvent() 114 info.callType == IMS_CALL_TYPE && info.videoState == VOICE_TYPE) { in WriteAnswerCallBehaviorEvent() 117 info.callType in WriteAnswerCallBehaviorEvent() 133 WriteIncomingCallFaultEvent(const int32_t slotId, const int32_t callType, const int32_t videoState, const int32_t errCode, const std::string &desc) WriteIncomingCallFaultEvent() argument 147 WriteDialCallFaultEvent(const int32_t slotId, const int32_t callType, const int32_t videoState, const int32_t errorCode, const std::string &desc) WriteDialCallFaultEvent() argument 332 SetCallParameterInfo( const int32_t slotId, const int32_t callType, const int32_t videoState) SetCallParameterInfo() argument 363 JudgingIncomingTimeOut( const int32_t slotId, const int32_t callType, const int32_t videoState) JudgingIncomingTimeOut() argument [all...] |
/base/telephony/call_manager/services/hisysevent/src/ |
H A D | call_manager_hisysevent.cpp | 60 void CallManagerHisysevent::WriteIncomingCallBehaviorEvent(const int32_t slotId, int32_t callType, int32_t callMode) in WriteIncomingCallBehaviorEvent() argument 63 if (callType == IMS_CALL_TYPE && callMode == VOICE_TYPE) { in WriteIncomingCallBehaviorEvent() 65 } else if (callType == IMS_CALL_TYPE && callMode == VIDEO_TYPE) { in WriteIncomingCallBehaviorEvent() 67 } else if ((callType == CS_CALL_TYPE || callType == SATELLITE_CALL_TYPE) && callMode == VOICE_TYPE) { in WriteIncomingCallBehaviorEvent() 83 void CallManagerHisysevent::WriteIncomingCallFaultEvent(const int32_t slotId, const int32_t callType, in WriteIncomingCallFaultEvent() argument 89 CALL_TYPE_KEY, callType, VIDEO_STATE_KEY, videoState, ERROR_TYPE_KEY, static_cast<int32_t>(value), in WriteIncomingCallFaultEvent() 93 CALL_TYPE_KEY, callType, VIDEO_STATE_KEY, videoState, ERROR_TYPE_KEY, errCode, ERROR_MSG_KEY, desc); in WriteIncomingCallFaultEvent() 97 void CallManagerHisysevent::WriteDialCallFaultEvent(const int32_t slotId, const int32_t callType, in WriteDialCallFaultEvent() argument 103 CALL_TYPE_KEY, callType, VIDEO_STATE_KE in WriteDialCallFaultEvent() 295 JudgingDialTimeOut(const int32_t slotId, const int32_t callType, const int32_t videoState) JudgingDialTimeOut() argument 307 JudgingIncomingTimeOut( const int32_t slotId, const int32_t callType, const int32_t videoState) JudgingIncomingTimeOut() argument [all...] |
/base/telephony/call_manager/services/hisysevent/include/ |
H A D | call_manager_hisysevent.h | 39 static void WriteIncomingCallBehaviorEvent(const int32_t slotId, int32_t callType, int32_t callMode); 41 static void WriteIncomingCallFaultEvent(const int32_t slotId, const int32_t callType, const int32_t videoState, 43 static void WriteDialCallFaultEvent(const int32_t slotId, const int32_t callType, const int32_t videoState, 53 void JudgingDialTimeOut(const int32_t slotId, const int32_t callType, const int32_t videoState); 54 void JudgingIncomingTimeOut(const int32_t slotId, const int32_t callType, const int32_t videoState);
|
/base/telephony/cellular_call/services/common/include/ |
H A D | cellular_call_hisysevent.h | 54 int32_t callType = 0; member 80 static void WriteDialCallFaultEvent(const int32_t slotId, const int32_t callType, const int32_t videoState, 86 static void WriteIncomingCallFaultEvent(const int32_t slotId, const int32_t callType, const int32_t videoState, 91 void SetCallParameterInfo(const int32_t slotId, const int32_t callType, const int32_t videoState); 95 void JudgingIncomingTimeOut(const int32_t slotId, const int32_t callType, const int32_t videoState);
|
/base/telephony/cellular_call/services/manager/src/ |
H A D | cellular_call_callback.cpp | 45 void CellularCallCallback::SetReadyToCall(int32_t slotId, int32_t callType, bool isReadyToCall) in SetReadyToCall() argument 57 iface_cast<CellularCallInterface>(remote)->SetReadyToCall(slotId, callType, isReadyToCall); in SetReadyToCall()
|
H A D | cellular_call_service.cpp | 308 CellularCallHiSysEvent::WriteDialCallFaultEvent(callInfo.accountId, static_cast<int32_t>(callInfo.callType), in Dial() 313 CellularCallHiSysEvent::WriteDialCallFaultEvent(callInfo.accountId, static_cast<int32_t>(callInfo.callType), in Dial() 370 callInfo.slotId, static_cast<int32_t>(callInfo.callType), callInfo.videoState); in HangUp() 382 if (CallType::TYPE_SATELLITE == callInfo.callType) { in HangUp() 392 } else if (CallType::TYPE_CS == callInfo.callType) { in HangUp() 402 } else if (CallType::TYPE_IMS == callInfo.callType) { in HangUp() 422 callInfo.slotId, static_cast<int32_t>(callInfo.callType), callInfo.videoState); in Reject() 434 if (CallType::TYPE_SATELLITE == callInfo.callType) { in Reject() 444 } else if (CallType::TYPE_CS == callInfo.callType) { in Reject() 454 } else if (CallType::TYPE_IMS == callInfo.callType) { in Reject() 745 SetReadyToCall(int32_t slotId, int32_t callType, bool isReadyToCall) SetReadyToCall() argument [all...] |
H A D | cellular_call_register.cpp | 39 detailInfo.callType = (*it).callType; in ReportCallsInfo() 57 static_cast<int32_t>(detailInfo.callType), static_cast<int32_t>(detailInfo.callMode)); in ReportCallsInfo() 434 ImsCallMode callMode = ConverToImsCallMode(callModeInfo.callType); in ReceiveUpdateCallMediaModeRequest() 449 ImsCallMode callMode = ConverToImsCallMode(callModeInfo.callType); in ReceiveUpdateCallMediaModeResponse() 507 ImsCallMode CellularCallRegister::ConverToImsCallMode(ImsCallType callType) in ConverToImsCallMode() argument 510 switch (callType) { in ConverToImsCallMode() 527 TELEPHONY_LOGE("unknown callType"); in ConverToImsCallMode()
|
/base/telephony/call_manager/interfaces/innerkits/ |
H A D | call_manager_info.h | 43 CallType callType = CallType::TYPE_ERR_CALL; member 162 CallType callType = CallType::TYPE_ERR_CALL; member 249 CallType callType = CallType::TYPE_ERR_CALL; member 347 CallType callType = CallType::TYPE_ERR_CALL; member 423 callType = temp.callType; in operator =() 473 CallType callType = CallType::TYPE_ERR_CALL; member 518 callType = temp.callType; in operator =()
|
/base/telephony/call_manager/services/call/src/ |
H A D | call_policy.cpp | 51 CallType callType = (CallType)extras.GetIntValue("callType"); in DialPolicy() local 52 if (IsValidCallType(callType) != TELEPHONY_SUCCESS) { in DialPolicy() 85 CallType callType = (CallType)extras.GetIntValue("callType"); in SuperPrivacyMode() local 88 return HasNormalCall(isEcc, slotId, callType); in SuperPrivacyMode() 92 return HasNormalCall(isEcc, slotId, callType); in SuperPrivacyMode() 101 int32_t spCallType = extras.GetIntValue("callType"); in SuperPrivacyMode() 106 return HasNormalCall(isEcc, slotId, callType); in SuperPrivacyMode() 108 int32_t CallPolicy::HasNormalCall(bool isEcc, int32_t slotId, CallType callType) in HasNormalCall() argument 175 IsValidCallType(CallType callType) IsValidCallType() argument [all...] |
H A D | call_incoming_filter_manager.cpp | 34 callInfo.callType = info.callType; in PackCellularCallInfo()
|
/base/telephony/cellular_call/services/control/src/ |
H A D | ims_video_call_control.cpp | 236 ImsCallType callType = ImsCallType::TEL_IMS_CALL_TYPE_VOICE; in ConverToImsCallType() local 239 callType = ImsCallType::TEL_IMS_CALL_TYPE_VOICE; in ConverToImsCallType() 242 callType = ImsCallType::TEL_IMS_CALL_TYPE_VT_RX; in ConverToImsCallType() 245 callType = ImsCallType::TEL_IMS_CALL_TYPE_VT_TX; in ConverToImsCallType() 248 callType = ImsCallType::TEL_IMS_CALL_TYPE_VT; in ConverToImsCallType() 251 callType = ImsCallType::TEL_IMS_CALL_TYPE_PAUSE; in ConverToImsCallType() 254 callType = ImsCallType::TEL_IMS_CALL_TYPE_VOICE; in ConverToImsCallType() 256 return callType; in ConverToImsCallType()
|
/base/telephony/call_manager/utils/include/ |
H A D | call_dialog.h | 32 int32_t &videoState, int32_t &dialType, int32_t &dialScene, int32_t &callType, bool isVideo); 41 int32_t &accountId, int32_t &videoState, int32_t &dialType, int32_t &dialScene, int32_t &callType, bool isVideo);
|
/base/telephony/cellular_call/test/fuzztest/imsclient_fuzzer/ |
H A D | imsclient_fuzzer.cpp | 107 int32_t callType = static_cast<int32_t>(size % NUM_TWO); in TestImsCallClientWithSlotAndType() local 110 imsCallClient->HoldCall(slotId, callType); in TestImsCallClientWithSlotAndType() 111 imsCallClient->UnHoldCall(slotId, callType); in TestImsCallClientWithSlotAndType() 112 imsCallClient->SwitchCall(slotId, callType); in TestImsCallClientWithSlotAndType() 114 imsCallClient->GetImsCallsDataRequest(slotId, callType); in TestImsCallClientWithSlotAndType() 138 capbility.imsCapabilityType = static_cast<ImsCapabilityType>(callType); in TestImsCallClientWithSlotAndType() 139 capbility.imsRadioTech = static_cast<ImsRegTech>(callType); in TestImsCallClientWithSlotAndType() 283 int32_t callType = static_cast<int32_t>(size % NUM_TWO); in TestImsCallProxyWithSlotAndType() local 286 proxy->HoldCall(slotId, callType); in TestImsCallProxyWithSlotAndType() 287 proxy->UnHoldCall(slotId, callType); in TestImsCallProxyWithSlotAndType() 374 ImsCallType callType = static_cast<ImsCallType>(static_cast<int32_t>(size % NUM_SIX)); TestImsCallProxyWithCallMediaModeRequest() local 392 ImsCallType callType = static_cast<ImsCallType>(static_cast<int32_t>(size % NUM_SIX)); TestImsCallProxyWithCallMediaModeResponse() local [all...] |
/base/telephony/cellular_call/interfaces/innerkits/ims/ |
H A D | ims_call_interface.h | 72 * @param callType Indicates the call type,
75 virtual int32_t HoldCall(int32_t slotId, int32_t callType) = 0;
81 * @param callType Indicates the type of video state, 0: voice, 1: video
84 virtual int32_t UnHoldCall(int32_t slotId, int32_t callType) = 0;
90 * @param callType Indicates the type of video state, 0: voice, 1: video
93 virtual int32_t SwitchCall(int32_t slotId, int32_t callType) = 0;
129 virtual int32_t SendUpdateCallMediaModeRequest(const ImsCallInfo &callInfo, ImsCallType callType) = 0;
139 virtual int32_t SendUpdateCallMediaModeResponse(const ImsCallInfo &callInfo, ImsCallType callType) = 0;
|
H A D | ims_call_proxy.h | 35 int32_t HoldCall(int32_t slotId, int32_t callType) override;
36 int32_t UnHoldCall(int32_t slotId, int32_t callType) override;
37 int32_t SwitchCall(int32_t slotId, int32_t callType) override;
41 int32_t SendUpdateCallMediaModeRequest(const ImsCallInfo &callInfo, ImsCallType callType) override;
42 int32_t SendUpdateCallMediaModeResponse(const ImsCallInfo &callInfo, ImsCallType callType) override;
98 int32_t WriteCommonInfo(int32_t slotId, std::string funcName, MessageParcel &in, int32_t callType);
|
H A D | ims_call_types.h | 278 ImsCallType callType = ImsCallType::TEL_IMS_CALL_TYPE_VOICE;
member 346 ImsCallType callType = ImsCallType::TEL_IMS_CALL_TYPE_VOICE;
member
|
H A D | ims_call_client.h | 119 * @param callType Indicates the call type,
122 int32_t HoldCall(int32_t slotId, int32_t callType);
128 * @param callType Indicates the type of video state, 0: voice, 1: video
131 int32_t UnHoldCall(int32_t slotId, int32_t callType);
137 * @param callType Indicates the type of video state, 0: voice, 1: video
140 int32_t SwitchCall(int32_t slotId, int32_t callType);
176 int32_t SendUpdateCallMediaModeRequest(const ImsCallInfo &callInfo, ImsCallType callType);
186 int32_t SendUpdateCallMediaModeResponse(const ImsCallInfo &callInfo, ImsCallType callType);
|
/base/telephony/cellular_call/services/manager/include/ |
H A D | cellular_call_callback.h | 36 void SetReadyToCall(int32_t slotId, int32_t callType, bool isReadyToCall) override;
|
/base/telephony/cellular_call/test/unittest/imstest/ |
H A D | cellular_call_hisysevent_test.cpp | 64 CallBehaviorParameterInfo callInfo = {.callType = IMS_CALL_TYPE, .videoState = VOICE_TYPE}; in HWTEST_F() 71 callInfo.callType = INVALID_VALUE; in HWTEST_F() 77 callInfo = {.callType = IMS_CALL_TYPE, .videoState = VOICE_TYPE}; in HWTEST_F() 84 callInfo.callType = INVALID_VALUE; in HWTEST_F() 91 int32_t callType = CS_CALL_TYPE; in HWTEST_F() local 96 cellularCallHiSysEvent->WriteIncomingCallFaultEvent(slotId, callType, videoState, errCode, desc); in HWTEST_F() 109 CallBehaviorParameterInfo callInfo = {.callType = IMS_CALL_TYPE, .videoState = VOICE_TYPE, in HWTEST_F() 120 CallBehaviorParameterInfo callInfo1 = {.callType = CS_CALL_TYPE, .videoState = VOICE_TYPE, in HWTEST_F() 128 int32_t callType = CS_CALL_TYPE; in HWTEST_F() local 133 cellularCallHiSysEvent->WriteIncomingCallFaultEvent(slotId, callType, videoStat in HWTEST_F() [all...] |
/base/telephony/call_manager/services/call/include/ |
H A D | common_type.h | 38 videoState(VideoStateType::TYPE_VOICE), callType(CallType::TYPE_ERR_CALL), in DialParaInfo() 46 CallType callType = CallType::TYPE_ERR_CALL; member
|
H A D | call_superprivacy_control_manager.h | 37 int32_t &videoState, int32_t &dialType, int32_t &dialScene, int32_t &callType);
|
/base/telephony/core_service/interfaces/innerkits/include/ |
H A D | network_search_callback_base.h | 55 * @param callType[in], indicate the call type is cs or ims. 0 is cs, 1 is ims 58 virtual void SetReadyToCall(int32_t slotId, int32_t callType, bool isReadyToCall) {} in SetReadyToCall() argument
|
/base/telephony/call_manager/test/fuzztest/call_fuzzer/ |
H A D | call_fuzzer.cpp | 55 dialParaInfo.callType = static_cast<CallType>(size % CALL_TYPE_NUM); in CSCallFunc() 103 paraInfo.callType = static_cast<CallType>(size % CALL_TYPE_NUM); in DialingProcess() 142 info.callType = static_cast<CallType>(size % CALL_TYPE_NUM); in GetCallerInfo() 189 paraInfo.callType = static_cast<CallType>(size % CALL_TYPE_NUM); in IMSCallFunc() 275 paraInfo.callType = static_cast<CallType>(size % CALL_TYPE_NUM); in IMSVideoCallFunc() 317 paraInfo.callType = static_cast<CallType>(size % CALL_TYPE_NUM); in IMSVideoCallWindowFunc() 347 paraInfo.callType = static_cast<CallType>(size % CALL_TYPE_NUM); in OttCallFunc() 391 paraInfo.callType = static_cast<CallType>(size % CALL_TYPE_NUM); in OttVideoCallFunc() 430 paraInfo.callType = static_cast<CallType>(size % CALL_TYPE_NUM); in OttVideoCallWindowFunc() 460 paraInfo.callType in SatelliteCallFunc() [all...] |
/base/telephony/ril_adapter/interfaces/innerkits/include/ |
H A D | hril_vendor_call_defs.h | 69 int32_t callType; member 565 * @param callType Call type. 568 void (*CombineConference)(const ReqDataInfo *requestInfo, int32_t callType); 575 * @param callType Call type. 578 void (*SeparateConference)(const ReqDataInfo *requestInfo, int32_t callIndex, int32_t callType);
|
/base/telephony/call_manager/services/telephony_interaction/src/ |
H A D | report_call_info_handler.cpp | 69 callDetailInfo.callType = (*iter).callType; in BuildCallDetailsInfo() 112 detailInfo.callType = (*it).callType; in UpdateCallsReportInfo() 118 CallManagerHisysevent::WriteIncomingCallFaultEvent(info.slotId, static_cast<int32_t>(detailInfo.callType), in UpdateCallsReportInfo()
|