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

  /frameworks/opt/telephony/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...]
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 359 private PduPart[] loadParts(long msgId) throws MmsException {
364 PduPart[] parts = null;
376 parts = new PduPart[partCount];
378 PduPart part = new PduPart();
612 PduPart[] parts = loadParts(msgId);
699 private static String getPartContentType(PduPart part) {
703 public Uri persistPart(PduPart part, long msgId, HashMap<Uri, InputStream> preOpenedFiles)
    [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() {
267 * return PduPart.disposition[0] instead of <Octet 128> (Form-data).
268 * return PduPart.disposition[1] instead of <Octet 129> (Attachment).
269 * return PduPart.disposition[2] instead of <Octet 130> (Inline).
277 * Use PduPart.disposition[0] instead of <Octet 128> (Form-data).
278 * Use PduPart.disposition[1] instead of <Octet 129> (Attachment).
279 * Use PduPart.disposition[2] instead of <Octet 130> (Inline)
    [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 57 import com.google.android.mms.pdu.PduPart;
76 PduPart smilPart = findSmilPart(pb);
101 private static PduPart findSmilPart(PduBody body) {
104 PduPart part = body.getPart(i);
124 private static SMILDocument getSmilDocument(PduPart smilPart) {
214 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(
  /development/samples/ApiDemos/src/com/example/android/apis/os/
MmsMessagingDemo.java 28 import com.google.android.mms.pdu.PduPart;
376 final PduPart part = new PduPart();
397 final PduPart smilPart = new PduPart();
440 final PduPart part = body.getPart(i);
  /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);
655 final PduPart part;
    [all...]
ComposeMessageActivity.java 149 import com.google.android.mms.pdu.PduPart;
    [all...]
SlideEditorActivity.java 64 import com.google.android.mms.pdu.PduPart;
731 public void onResizeResult(PduPart part, boolean append) {
    [all...]

Completed in 290 milliseconds