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...]
PduPersister.java 343 private PduPart[] loadParts(long msgId) throws MmsException {
348 PduPart[] parts = null;
360 parts = new PduPart[partCount];
362 PduPart part = new PduPart();
578 PduPart[] parts = loadParts(msgId);
657 public Uri persistPart(PduPart part, long msgId)
738 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 29 import com.google.android.mms.pdu.PduPart;
50 PduPart part = findPart(pb, src);
61 private static PduPart findPart(PduBody pb, String src) {
62 PduPart part = null;
96 LayoutModel layouts, PduPart part) throws DrmException, IOException, MmsException {
132 String tag, String src, SMILMediaElement sme, PduPart part,
SmilHelper.java 35 import com.google.android.mms.pdu.PduPart;
74 PduPart smilPart = findSmilPart(pb);
99 private static PduPart findSmilPart(PduBody body) {
102 PduPart part = body.getPart(i);
122 private static SMILDocument getSmilDocument(PduPart smilPart) {
210 PduPart part = pb.getPart(i);
SlideshowModel.java 36 import com.google.android.mms.pdu.PduPart;
259 PduPart part = new PduPart();
324 PduPart smilPart = new PduPart();
605 PduPart part = pb.getPartByContentLocation(media.getSrc());
ImageModel.java 32 import com.google.android.mms.pdu.PduPart;
256 PduPart part = image.getResizedImageAsPart(
  /packages/apps/Mms/src/com/android/mms/ui/
UriImage.java 24 import com.google.android.mms.pdu.PduPart;
186 * that the content type of the resulting PduPart may not be the same as the content type of
187 * this UriImage; always call {@link PduPart#getContentType()} to get the new content type.
192 * @return A new PduPart containing the resized image data
194 public PduPart getResizedImageAsPart(int widthLimit, int heightLimit, int byteLimit) {
195 PduPart part = new PduPart();
MessageUtils.java 39 import com.google.android.mms.pdu.PduPart;
83 void onResizeResult(PduPart part, boolean append);
584 final PduPart part;
    [all...]
ComposeMessageActivity.java 140 import com.google.android.mms.pdu.PduPart;
    [all...]
SlideEditorActivity.java 37 import com.google.android.mms.pdu.PduPart;
721 public void onResizeResult(PduPart part, boolean append) {

Completed in 1270 milliseconds