HomeSort by relevance Sort by last modified time
    Searched refs:PduPart (Results 1 - 13 of 13) sorted by null

  /frameworks/base/core/java/com/google/android/mms/pdu/
PduBody.java 25 private Vector<PduPart> mParts = null;
27 private Map<String, PduPart> mPartMapByContentId = null;
28 private Map<String, PduPart> mPartMapByContentLocation = null;
29 private Map<String, PduPart> mPartMapByName = null;
30 private Map<String, PduPart> mPartMapByFileName = null;
36 mParts = new Vector<PduPart>();
38 mPartMapByContentId = new HashMap<String, PduPart>();
39 mPartMapByContentLocation = new HashMap<String, PduPart>();
40 mPartMapByName = new HashMap<String, PduPart>();
41 mPartMapByFileName = new HashMap<String, PduPart>();
    [all...]
PduParser.java 688 mStartParam = (byte[]) map.get(PduPart.P_START);
691 mTypeParam= (byte[]) map.get(PduPart.P_TYPE);
726 PduPart part = new PduPart();
743 byte[] name = (byte[]) map.get(PduPart.P_NAME);
749 Integer charset = (Integer) map.get(PduPart.P_CHARSET);
786 if (encoding.equalsIgnoreCase(PduPart.P_BASE64))
    [all...]
PduPersister.java 344 private PduPart[] loadParts(long msgId) throws MmsException {
349 PduPart[] parts = null;
361 parts = new PduPart[partCount];
363 PduPart part = new PduPart();
578 PduPart[] parts = loadParts(msgId);
657 public Uri persistPart(PduPart part, long msgId)
731 private void persistData(PduPart part, Uri uri,
    [all...]
PduPart.java 28 public class PduPart {
90 * Value of disposition can be set to PduPart when the value is octet in
122 private static final String TAG = "PduPart";
127 public PduPart() {
255 * return PduPart.disposition[0] instead of <Octet 128> (Form-data).
256 * return PduPart.disposition[1] instead of <Octet 129> (Attachment).
257 * return PduPart.disposition[2] instead of <Octet 130> (Inline).
265 * Use PduPart.disposition[0] instead of <Octet 128> (Form-data).
266 * Use PduPart.disposition[1] instead of <Octet 129> (Attachment).
267 * Use PduPart.disposition[2] instead of <Octet 130> (Inline)
    [all...]
PduComposer.java 872 PduPart part;
878 appendOctet(PduPart.P_DEP_START);
887 appendOctet(PduPart.P_CT_MR_TYPE);
946 appendOctet(PduPart.P_DEP_NAME);
952 appendOctet(PduPart.P_CHARSET);
965 appendOctet(PduPart.P_CONTENT_ID);
976 appendOctet(PduPart.P_CONTENT_LOCATION);
    [all...]
  /packages/apps/Mms/src/com/android/mms/model/
MediaModelFactory.java 28 import com.google.android.mms.pdu.PduPart;
49 PduPart part = findPart(pb, src);
60 private static PduPart findPart(PduBody pb, String src) {
61 PduPart part = null;
86 LayoutModel layouts, PduPart part) throws DrmException, IOException, MmsException {
112 String tag, String src, SMILMediaElement sme, PduPart part,
SmilHelper.java 35 import com.google.android.mms.pdu.PduPart;
75 PduPart smilPart = findSmilPart(pb);
100 private static PduPart findSmilPart(PduBody body) {
103 PduPart part = body.getPart(i);
123 private static SMILDocument getSmilDocument(PduPart smilPart) {
211 PduPart part = pb.getPart(i);
SlideshowModel.java 35 import com.google.android.mms.pdu.PduPart;
208 PduPart part = new PduPart();
273 PduPart smilPart = new PduPart();
540 PduPart part = pb.getPartByContentLocation(media.getSrc());
ImageModel.java 30 import com.google.android.mms.pdu.PduPart;
206 PduPart part = image.getResizedImageAsPart(
  /packages/apps/Mms/src/com/android/mms/ui/
UriImage.java 22 import com.google.android.mms.pdu.PduPart;
175 public PduPart getResizedImageAsPart(int widthLimit, int heightLimit, int byteLimit) {
176 PduPart part = new PduPart();
MessageUtils.java 38 import com.google.android.mms.pdu.PduPart;
83 void onResizeResult(PduPart part, boolean append);
588 PduPart part = new PduPart();
632 final PduPart part;
    [all...]
ComposeMessageActivity.java 132 import com.google.android.mms.pdu.PduPart;
    [all...]
SlideEditorActivity.java 33 import com.google.android.mms.pdu.PduPart;
652 public void onResizeResult(PduPart part, boolean append) {

Completed in 173 milliseconds