Home
last modified time | relevance | path

Searched refs:GetHeaderOctetValue (Results 1 – 4 of 4) sorted by relevance

/base/telephony/sms_mms/test/unittest/
Dmms_msg_test.cpp695 std::string deliverReport = std::to_string(decodeMsg.GetHeaderOctetValue(MMS_DELIVERY_REPORT)); in MmsSendReqDecodeTest()
696 … std::string sendVisbility = std::to_string(decodeMsg.GetHeaderOctetValue(MMS_SENDER_VISIBILITY)); in MmsSendReqDecodeTest()
697 std::string readResport = std::to_string(decodeMsg.GetHeaderOctetValue(MMS_READ_REPORT)); in MmsSendReqDecodeTest()
698 std::string messageClass = std::to_string(decodeMsg.GetHeaderOctetValue(MMS_MESSAGE_CLASS)); in MmsSendReqDecodeTest()
699 std::string priority = std::to_string(decodeMsg.GetHeaderOctetValue(MMS_PRIORITY)); in MmsSendReqDecodeTest()
734 std::string responseStatus = std::to_string(decodeMsg.GetHeaderOctetValue(MMS_RESPONSE_STATUS)); in MmsSendConfDecodeTest()
757 std::string status = std::to_string(decodeMsg.GetHeaderOctetValue(MMS_STATUS)); in MmsNotifyRespIndDecodeTest()
811 std::string status = std::to_string(decodeMsg.GetHeaderOctetValue(MMS_STATUS)); in MmsDeliveryIndDecodeTest()
830 std::string status = std::to_string(decodeMsg.GetHeaderOctetValue(MMS_STATUS)); in MmsReadRecIndDecodeTest()
849 std::string readStatus = std::to_string(decodeMsg.GetHeaderOctetValue(MMS_READ_STATUS)); in MmsReadOrigIndDecodeTest()
/base/telephony/sms_mms/frameworks/js/napi/src/
Dnapi_mms.cpp139 asyncContext.responseState = mmsMsg.GetHeaderOctetValue(MmsFieldCode::MMS_RESPONSE_STATUS); in GetMmsSendConf()
157 asyncContext.messageClass = mmsMsg.GetHeaderOctetValue(MmsFieldCode::MMS_MESSAGE_CLASS); in GetMmsSendReq()
159 asyncContext.priority = mmsMsg.GetHeaderOctetValue(MmsFieldCode::MMS_PRIORITY); in GetMmsSendReq()
160 asyncContext.senderVisibility = mmsMsg.GetHeaderOctetValue(MmsFieldCode::MMS_SENDER_VISIBILITY); in GetMmsSendReq()
161 asyncContext.deliveryReport = mmsMsg.GetHeaderOctetValue(MmsFieldCode::MMS_DELIVERY_REPORT); in GetMmsSendReq()
162 asyncContext.readReport = mmsMsg.GetHeaderOctetValue(MmsFieldCode::MMS_READ_REPORT); in GetMmsSendReq()
171 asyncContext.messageClass = mmsMsg.GetHeaderOctetValue(MmsFieldCode::MMS_MESSAGE_CLASS); in GetMmsNotificationInd()
177 asyncContext.deliveryReport = mmsMsg.GetHeaderOctetValue(MmsFieldCode::MMS_DELIVERY_REPORT); in GetMmsNotificationInd()
179 asyncContext.contentClass = mmsMsg.GetHeaderOctetValue(MmsFieldCode::MMS_CONTENT_CLASS); in GetMmsNotificationInd()
187 asyncContext.status = mmsMsg.GetHeaderOctetValue(MmsFieldCode::MMS_STATUS); in GetMmsRespInd()
[all …]
/base/telephony/sms_mms/interfaces/innerkits/
Dmms_msg.h160 uint8_t GetHeaderOctetValue(uint8_t fieldId);
/base/telephony/sms_mms/frameworks/native/mms/src/
Dmms_msg.cpp97 return GetHeaderOctetValue(MMS_MESSAGE_TYPE); in GetMmsMessageType()
172 uint8_t MmsMsg::GetHeaderOctetValue(uint8_t fieldId) in GetHeaderOctetValue() function in OHOS::Telephony::MmsMsg