Home | History | Annotate | Download | only in ui

Lines Matching refs:Mms

18 package com.android.mms.ui;
20 import com.android.mms.MmsApp;
21 import com.android.mms.MmsConfig;
22 import com.android.mms.R;
23 import com.android.mms.LogTag;
24 import com.android.mms.TempFileProvider;
25 import com.android.mms.data.WorkingMessage;
26 import com.android.mms.model.MediaModel;
27 import com.android.mms.model.SlideModel;
28 import com.android.mms.model.SlideshowModel;
29 import com.android.mms.transaction.MmsMessageSender;
30 import com.android.mms.util.AddressUtils;
31 import com.google.android.mms.ContentType;
32 import com.google.android.mms.MmsException;
33 import com.google.android.mms.pdu.CharacterSets;
34 import com.google.android.mms.pdu.EncodedStringValue;
35 import com.google.android.mms.pdu.MultimediaMessagePdu;
36 import com.google.android.mms.pdu.NotificationInd;
37 import com.google.android.mms.pdu.PduBody;
38 import com.google.android.mms.pdu.PduHeaders;
39 import com.google.android.mms.pdu.PduPart;
40 import com.google.android.mms.pdu.PduPersister;
41 import com.google.android.mms.pdu.RetrieveConf;
42 import com.google.android.mms.pdu.SendReq;
61 import android.provider.Telephony.Mms;
101 * MMS address parsing data structures
126 if ("mms".equals(cursor.getString(MessageListAdapter.COLUMN_MSG_TYPE))) {
148 Uri uri = ContentUris.withAppendedId(Mms.CONTENT_URI, id);
159 // Message Type: Mms Notification.
211 Uri uri = ContentUris.withAppendedId(Mms.CONTENT_URI, id);
260 if (msgBox == Mms.MESSAGE_BOX_DRAFTS) {
262 } else if (msgBox == Mms.MESSAGE_BOX_INBOX) {
657 // we don't use Mms.isEmailAddress() because it is too strict for comparing addresses like
672 StringBuilder selectionBuilder = new StringBuilder(Mms.MESSAGE_TYPE + " = "
674 + " AND " + Mms.READ + " = 0"
675 + " AND " + Mms.READ_REPORT + " = " + PduHeaders.VALUE_YES);
688 buf.append(Mms.THREAD_ID).append("=?");
697 Mms.Inbox.CONTENT_URI, new String[] {Mms._ID, Mms.MESSAGE_ID},
714 Uri uri = ContentUris.withAppendedId(Mms.CONTENT_URI, c.getLong(0));
813 * @param msgUri the MMS message URI in database
944 * Returns true if the address passed in is a valid MMS address.
952 * parse the input address to be a valid MMS address.
954 * - if the address can be parsed into a valid MMS phone number, return the parsed number.
959 if (Mms.isEmailAddress(address)) {
963 // if we are able to parse the address to a MMS compliant phone number, take that.
974 // it's not a valid MMS address, return null