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

  /frameworks/opt/mms/src/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 186 PduPart firstPart = mBody.getPart(0);
    [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 356 private PduPart[] loadParts(long msgId) throws MmsException {
361 PduPart[] parts = null;
373 parts = new PduPart[partCount];
375 PduPart part = new PduPart();
609 PduPart[] parts = loadParts(msgId);
696 private static String getPartContentType(PduPart part) {
700 public Uri persistPart(PduPart part, long msgId, HashMap<Uri, InputStream> preOpenedFiles)
    [all...]
  /packages/apps/Mms/src/com/android/mms/model/
MediaModelFactory.java 36 import com.google.android.mms.pdu.PduPart;
46 PduPart part = findPart(pb, src);
57 private static PduPart findPart(PduBody pb, String src) {
58 PduPart part = null;
92 LayoutModel layouts, PduPart part) throws IOException, MmsException {
125 String tag, String src, SMILMediaElement sme, PduPart part,
SmilHelper.java 56 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) {
213 PduPart part = pb.getPart(i);
SlideshowModel.java 61 import com.google.android.mms.pdu.PduPart;
249 PduPart part = new PduPart();
303 PduPart smilPart = new PduPart();
610 PduPart part = pb.getPartByContentLocation(media.getSrc());
ImageModel.java 46 import com.google.android.mms.pdu.PduPart;
224 PduPart part = image.getResizedImageAsPart(
  /packages/apps/Mms/src/com/android/mms/ui/
UriImage.java 42 import com.google.android.mms.pdu.PduPart;
235 * that the content type of the resulting PduPart may not be the same as the content type of
236 * this UriImage; always call {@link PduPart#getContentType()} to get the new content type.
241 * @return A new PduPart containing the resized image data
243 public PduPart getResizedImageAsPart(int widthLimit, int heightLimit, int byteLimit) {
244 PduPart part = new PduPart();
MessageUtils.java 73 import com.google.android.mms.pdu.PduPart;
83 void onResizeResult(PduPart part, boolean append);
651 final PduPart part;
    [all...]
ComposeMessageActivity.java 149 import com.google.android.mms.pdu.PduPart;
    [all...]
SlideEditorActivity.java 63 import com.google.android.mms.pdu.PduPart;
730 public void onResizeResult(PduPart part, boolean append) {
    [all...]

Completed in 5303 milliseconds