Lines Matching refs:telesvcMsg
40 …transMsg->data.p2pMsg.telesvcMsg.data.submit.userData.encodeType = CovertEncodingType(codingScheme… in CreateSubmitTransMsg()
42 transMsg->data.p2pMsg.telesvcMsg.data.submit.replyOpt.deliverAckReq = bStatusReport; in CreateSubmitTransMsg()
76 transMsg->data.p2pMsg.telesvcMsg.data.submit.replyOpt.deliverAckReq = bStatusReport; in CreateSubmitTransMsg()
109 transMsg->data.p2pMsg.telesvcMsg.type = (SmsMessageType)SMS_TYPE_SUBMIT; in GreateTransMsg()
116 transMsg->data.p2pMsg.telesvcMsg.data.submit.valPeriod.format = SMS_TIME_RELATIVE; in GreateTransMsg()
117 …transMsg->data.p2pMsg.telesvcMsg.data.submit.valPeriod.time.relTime.time = SMS_REL_TIME_INDEFINITE; in GreateTransMsg()
119 transMsg->data.p2pMsg.telesvcMsg.data.submit.priority = SMS_PRIORITY_NORMAL; in GreateTransMsg()
121 transMsg->data.p2pMsg.telesvcMsg.data.submit.privacy = SMS_PRIVACY_NOT_RESTRICTED; in GreateTransMsg()
123 transMsg->data.p2pMsg.telesvcMsg.data.submit.alertPriority = SMS_ALERT_MOBILE_DEFAULT; in GreateTransMsg()
125 transMsg->data.p2pMsg.telesvcMsg.data.submit.language = SMS_LAN_UNKNOWN; in GreateTransMsg()
192 if (transMsg_->data.cbMsg.telesvcMsg.data.deliver.cmasData.isWrongRecodeType) { in PduAnalysis()
196 … SmsEncodingType encodeType = transMsg_->data.cbMsg.telesvcMsg.data.deliver.cmasData.encodeType; in PduAnalysis()
237 switch (p2pMsg.telesvcMsg.type) { in AnalysisP2pMsg()
240 AnalsisDeliverMsg(p2pMsg.telesvcMsg.data.deliver); in AnalysisP2pMsg()
243 AnalsisDeliverAck(p2pMsg.telesvcMsg.data.deliveryAck); in AnalysisP2pMsg()
249 AnalsisSubmitReport(p2pMsg.telesvcMsg.data.report); in AnalysisP2pMsg()
252 AnalsisSubmitMsg(p2pMsg.telesvcMsg.data.submit); in AnalysisP2pMsg()
255 TELEPHONY_LOGI("AnalysisP2pMsg unkown type =%{public}d", p2pMsg.telesvcMsg.type); in AnalysisP2pMsg()
271 if (p2pMsg.telesvcMsg.data.deliver.enhancedVmn.faxIncluded) { in AnalsisDeliverMwi()
275 if (p2pMsg.telesvcMsg.data.deliver.numMsg < 0) { in AnalsisDeliverMwi()
280 specialSmsInd_->waitMsgNum = p2pMsg.telesvcMsg.data.deliver.numMsg; in AnalsisDeliverMwi()
286 if (bMwiSet_ && (p2pMsg.telesvcMsg.data.deliver.userData.userData.length == 0)) { in AnalsisDeliverMwi()
406 if (cbMsg.telesvcMsg.type != SmsMessageType::SMS_TYPE_DELIVER) { in AnalysisCbMsg()
407 TELEPHONY_LOGE("No matching type = [%{public}d]", cbMsg.telesvcMsg.type); in AnalysisCbMsg()
410 messageId_ = cbMsg.telesvcMsg.data.deliver.msgId.msgId; in AnalysisCbMsg()
411 priority_ = cbMsg.telesvcMsg.data.deliver.priority; in AnalysisCbMsg()
412 language_ = cbMsg.telesvcMsg.data.deliver.language; in AnalysisCbMsg()
416 AnalsisCMASMsg(cbMsg.telesvcMsg.data.deliver); in AnalysisCbMsg()
418 AnalsisDeliverMsg(cbMsg.telesvcMsg.data.deliver); in AnalysisCbMsg()
530 return (transMsg_->data.p2pMsg.telesvcMsg.type == SMS_TYPE_DELIVERY_ACK); in IsStatusReport()