Home
last modified time | relevance | path

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

/development/samples/ApiDemos/src/com/example/android/mmslib/pdu/
DPduBody.java52 byte[] contentLocation = part.getContentLocation(); in putPartToMaps()
53 if(null != contentLocation) { in putPartToMaps()
54 String clc = new String(contentLocation); in putPartToMaps()
168 public PduPart getPartByContentLocation(String contentLocation) { in getPartByContentLocation() argument
169 return mPartMapByContentLocation.get(contentLocation); in getPartByContentLocation()
DPduPart.java255 public void setContentLocation(byte[] contentLocation) { in setContentLocation() argument
256 if(contentLocation == null) { in setContentLocation()
260 mPartHeader.put(P_CONTENT_LOCATION, contentLocation); in setContentLocation()
DPduComposer.java972 byte[] contentLocation = part.getContentLocation(); in makeMessageBody()
973 if (null != contentLocation) { in makeMessageBody()
975 appendTextString(contentLocation); in makeMessageBody()