Home
last modified time | relevance | path

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

/frameworks/base/telephony/common/com/google/android/mms/pdu/
DPduBody.java56 byte[] contentLocation = part.getContentLocation(); in putPartToMaps()
57 if(null != contentLocation) { in putPartToMaps()
58 String clc = new String(contentLocation); in putPartToMaps()
180 public PduPart getPartByContentLocation(String contentLocation) { in getPartByContentLocation() argument
181 return mPartMapByContentLocation.get(contentLocation); in getPartByContentLocation()
DPduPart.java268 public void setContentLocation(byte[] contentLocation) { in setContentLocation() argument
269 if(contentLocation == null) { in setContentLocation()
273 mPartHeader.put(P_CONTENT_LOCATION, contentLocation); in setContentLocation()
DPduComposer.java1011 byte[] contentLocation = part.getContentLocation(); in makeMessageBody()
1012 if (null != contentLocation) { in makeMessageBody()
1014 appendTextString(contentLocation); in makeMessageBody()
DPduParser.java1647 byte[] contentLocation = parseWapString(pduDataStream, TYPE_TEXT_STRING); in parsePartHeaders()
1648 if (null != contentLocation) { in parsePartHeaders()
1649 part.setContentLocation(contentLocation); in parsePartHeaders()
DPduPersister.java408 byte[] contentLocation = getByteArrayFromPartColumn( in loadParts()
410 if (contentLocation != null) { in loadParts()
411 part.setContentLocation(contentLocation); in loadParts()