Home
last modified time | relevance | path

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

/frameworks/base/telephony/common/com/google/android/mms/pdu/
DPduBody.java55 byte[] contentLocation = part.getContentLocation(); in putPartToMaps()
56 if(null != contentLocation) { in putPartToMaps()
57 String clc = new String(contentLocation); in putPartToMaps()
179 public PduPart getPartByContentLocation(String contentLocation) { in getPartByContentLocation() argument
180 return mPartMapByContentLocation.get(contentLocation); in getPartByContentLocation()
DPduPart.java267 public void setContentLocation(byte[] contentLocation) { in setContentLocation() argument
268 if(contentLocation == null) { in setContentLocation()
272 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.java1642 byte[] contentLocation = parseWapString(pduDataStream, TYPE_TEXT_STRING); in parsePartHeaders()
1643 if (null != contentLocation) { in parsePartHeaders()
1644 part.setContentLocation(contentLocation); in parsePartHeaders()
DPduPersister.java408 byte[] contentLocation = getByteArrayFromPartColumn( in loadParts()
410 if (contentLocation != null) { in loadParts()
411 part.setContentLocation(contentLocation); in loadParts()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DWapPushOverSms.java522 final byte [] contentLocation = nInd.getContentLocation(); in writeInboxMessage()
523 if ('=' == contentLocation[contentLocation.length - 1]) { in writeInboxMessage()
525 byte [] contentLocationWithId = new byte [contentLocation.length in writeInboxMessage()
527 System.arraycopy(contentLocation, 0, contentLocationWithId, in writeInboxMessage()
528 0, contentLocation.length); in writeInboxMessage()
530 contentLocation.length, transactionId.length); in writeInboxMessage()