Searched defs:contentLocation (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/com/google/android/mms/pdu/
H A DPduBody.java52 byte[] contentLocation = part.getContentLocation();
53 if(null != contentLocation) {
54 String clc = new String(contentLocation);
168 public PduPart getPartByContentLocation(String contentLocation) { argument
169 return mPartMapByContentLocation.get(contentLocation);
H A DPduPart.java240 * @param contentLocation the value
243 public void setContentLocation(byte[] contentLocation) { argument
244 if(contentLocation == null) {
248 mPartHeader.put(P_CONTENT_LOCATION, contentLocation);

Completed in 397 milliseconds