Home | History | Annotate | Download | only in transaction

Lines Matching refs:Mms

18 package com.android.mms.transaction;
20 import com.android.mms.MmsConfig;
21 import com.android.mms.ui.MessageUtils;
22 import com.android.mms.util.DownloadManager;
23 import com.android.mms.util.Recycler;
24 import com.android.mms.widget.MmsWidgetProvider;
25 import com.google.android.mms.MmsException;
26 import com.google.android.mms.pdu.AcknowledgeInd;
27 import com.google.android.mms.pdu.EncodedStringValue;
28 import com.google.android.mms.pdu.PduComposer;
29 import com.google.android.mms.pdu.PduHeaders;
30 import com.google.android.mms.pdu.PduParser;
31 import com.google.android.mms.pdu.PduPersister;
32 import com.google.android.mms.pdu.RetrieveConf;
33 import com.google.android.mms.pdu.EncodedStringValue;
40 import android.provider.Telephony.Mms;
41 import android.provider.Telephony.Mms.Inbox;
70 Mms.CONTENT_LOCATION,
71 Mms.LOCKED
87 Log.v(TAG, "X-Mms-Content-Location: " + mContentLocation);
91 "Initializing from X-Mms-Content-Location is abandoned!");
117 throw new MmsException("Cannot get X-Mms-Content-Location from: " + uri);
122 * @see com.android.mms.transaction.Transaction#process()
157 values.put(Mms.DATE, System.currentTimeMillis() / 1000L);
202 String selection = "(" + Mms.MESSAGE_ID + " = ? AND "
203 + Mms.MESSAGE_TYPE + " = ?)";
209 Mms.CONTENT_URI, new String[] { Mms._ID, Mms.SUBJECT, Mms.SUBJECT_CHARSET },
241 int subjectIdx = cursor.getColumnIndex(Mms.SUBJECT);
242 int charsetIdx = cursor.getColumnIndex(Mms.SUBJECT_CHARSET);
270 // the MMS proxy-relay doesn't require an ACK.
294 values.put(Mms.CONTENT_LOCATION, contentLocation);
295 values.put(Mms.LOCKED, locked); // preserve the state of the M-Notification.ind lock.