Home
last modified time | relevance | path

Searched refs:contentLocation (Results 1 – 12 of 12) sorted by relevance

/base/telephony/sms_mms/frameworks/native/mms/src/
Dmms_body.cpp169 bool MmsBody::IsContentLocationPartExist(std::string contentLocation) in IsContentLocationPartExist() argument
174 if (contentLocation == strlocation) { in IsContentLocationPartExist()
201 std::string contentLocation; in IsBodyPartExist() local
202 bodyPart.GetContentLocation(contentLocation); in IsBodyPartExist()
203 if (IsContentLocationPartExist(contentLocation)) { in IsBodyPartExist()
Dmms_body_part.cpp324 bool MmsBodyPart::SetContentLocation(std::string contentLocation) in SetContentLocation() argument
326 return mmsBodyPartHeader_.SetContentLocation(contentLocation); in SetContentLocation()
329 bool MmsBodyPart::GetContentLocation(std::string &contentLocation) in GetContentLocation() argument
331 return mmsBodyPartHeader_.GetContentLocation(contentLocation); in GetContentLocation()
399 std::string contentLocation = ""; in DecodeSetFileName() local
400 GetPartHeader().GetContentLocation(contentLocation); in DecodeSetFileName()
401 if (contentLocation.length() > 0) { in DecodeSetFileName()
402 strFileName_ = contentLocation; in DecodeSetFileName()
Dmms_body_part_header.cpp328 bool MmsBodyPartHeader::GetContentLocation(std::string &contentLocation) in GetContentLocation() argument
330 contentLocation.clear(); in GetContentLocation()
331 contentLocation.assign(strContentLocation_); in GetContentLocation()
335 bool MmsBodyPartHeader::SetContentLocation(std::string contentLocation) in SetContentLocation() argument
337 strContentLocation_ = contentLocation; in SetContentLocation()
Dmms_attachment.cpp94 bool MmsAttachment::SetContentLocation(std::string contentLocation) in SetContentLocation() argument
96 if (contentLocation.empty()) { in SetContentLocation()
100 contentLocation_.assign(contentLocation); in SetContentLocation()
Dmms_msg.cpp335 std::string contentLocation = ""; in GetAllAttachment() local
336 part.GetPartHeader().GetContentLocation(contentLocation); in GetAllAttachment()
337 attachment.SetContentLocation(contentLocation); in GetAllAttachment()
/base/telephony/sms_mms/frameworks/native/mms/include/
Dmms_body_part.h45 bool SetContentLocation(std::string contentLocation);
46 bool GetContentLocation(std::string &contentLocation);
Dmms_body_part_header.h59 bool GetContentLocation(std::string &contentLocation);
64 bool SetContentLocation(std::string contentLocation);
Dmms_body.h42 bool IsContentLocationPartExist(std::string contentLocation);
/base/telephony/sms_mms/interfaces/innerkits/
Dmms_attachment.h69 bool SetContentLocation(std::string contentLocation);
/base/telephony/sms_mms/interfaces/kits/js/
D@ohos.telephony.sms.d.ts1193 contentLocation: string; property
1713 contentLocation: string; property
/base/telephony/sms_mms/frameworks/js/napi/include/
Dnapi_mms.h58 std::string contentLocation = ""; member
102 std::string contentLocation = ""; member
/base/telephony/sms_mms/frameworks/js/napi/src/
Dnapi_mms.cpp188 asyncContext.contentLocation = mmsMsg.GetHeaderStringValue(MmsFieldCode::MMS_CONTENT_LOCATION); in GetMmsNotificationInd()
286 attachmentContext.contentLocation = it.GetContentLocation(); in getAttachmentByDecodeMms()
359 NapiUtil::SetPropertyStringUtf8(env, attachment, "contentLocation", context.contentLocation); in CreateAttachmentValue()
447 …etPropertyStringUtf8(env, notificationObj, "contentLocation", notificationContext.contentLocation); in ParseNotificationIndValue()
944 notificationInd.contentLocation = GetNapiStringValue(env, napiValue, "contentLocation"); in ReadEncodeMmsType()
1047 attachmentContext.contentLocation = GetNapiStringValue(env, value, "contentLocation"); in BuildMmsAttachment()
1170 if (it->contentLocation.size() > 0) { in setAttachmentToCore()
1171 itAttachment.SetContentLocation(it->contentLocation); in setAttachmentToCore()
1257 mmsMsg.SetHeaderStringValue(MmsFieldCode::MMS_CONTENT_LOCATION, context.contentLocation); in setNotificationIndToCore()