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 170 PduPart firstPart = mBody.getPart(0);
709 mStartParam = (byte[]) map.get(PduPart.P_START);
712 mTypeParam= (byte[]) map.get(PduPart.P_TYPE);
747 PduPart part = new PduPart();
764 byte[] name = (byte[]) map.get(PduPart.P_NAME);
770 Integer charset = (Integer) map.get(PduPart.P_CHARSET);
    [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 870 PduPart part;
876 appendOctet(PduPart.P_DEP_START);
885 appendOctet(PduPart.P_CT_MR_TYPE);
944 appendOctet(PduPart.P_DEP_NAME);
950 appendOctet(PduPart.P_CHARSET);
963 appendOctet(PduPart.P_CONTENT_ID);
974 appendOctet(PduPart.P_CONTENT_LOCATION);
    [all...]
PduPersister.java 352 private PduPart[] loadParts(long msgId) throws MmsException {
357 PduPart[] parts = null;
369 parts = new PduPart[partCount];
371 PduPart part = new PduPart();
605 PduPart[] parts = loadParts(msgId);
692 public Uri persistPart(PduPart part, long msgId)
773 private void persistData(PduPart part, Uri uri,
    [all...]
  /packages/apps/Mms/src/com/android/mms/model/
MediaModelFactory.java 27 import com.google.android.mms.pdu.PduPart;
48 PduPart part = findPart(pb, src);
59 private static PduPart findPart(PduBody pb, String src) {
60 PduPart part = null;
94 LayoutModel layouts, PduPart part) throws IOException, MmsException {
127 String tag, String src, SMILMediaElement sme, PduPart part,
SmilHelper.java 35 import com.google.android.mms.pdu.PduPart;
82 PduPart smilPart = findSmilPart(pb);
107 private static PduPart findSmilPart(PduBody body) {
110 PduPart part = body.getPart(i);
130 private static SMILDocument getSmilDocument(PduPart smilPart) {
220 PduPart part = pb.getPart(i);
SlideshowModel.java 34 import com.google.android.mms.pdu.PduPart;
244 PduPart part = new PduPart();
298 PduPart smilPart = new PduPart();
579 PduPart part = pb.getPartByContentLocation(media.getSrc());
ImageModel.java 32 import com.google.android.mms.pdu.PduPart;
226 PduPart part = image.getResizedImageAsPart(
  /packages/apps/Mms/src/com/android/mms/ui/
UriImage.java 24 import com.google.android.mms.pdu.PduPart;
220 * that the content type of the resulting PduPart may not be the same as the content type of
221 * this UriImage; always call {@link PduPart#getContentType()} to get the new content type.
226 * @return A new PduPart containing the resized image data
228 public PduPart getResizedImageAsPart(int widthLimit, int heightLimit, int byteLimit) {
229 PduPart part = new PduPart();
MessageUtils.java 39 import com.google.android.mms.pdu.PduPart;
83 void onResizeResult(PduPart part, boolean append);
603 final PduPart part;
    [all...]
ComposeMessageActivity.java 136 import com.google.android.mms.pdu.PduPart;
    [all...]
SlideEditorActivity.java 37 import com.google.android.mms.pdu.PduPart;
734 public void onResizeResult(PduPart part, boolean append) {
    [all...]

Completed in 456 milliseconds