OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PduPersister
(Results
1 - 20
of
20
) sorted by null
/packages/apps/Mms/src/com/android/mms/transaction/
ReadRecTransaction.java
22
import com.google.android.mms.pdu.
PduPersister
;
70
PduPersister
persister =
PduPersister
.getPduPersister(mContext);
MmsMessageSender.java
27
import com.google.android.mms.pdu.
PduPersister
;
66
PduPersister
p =
PduPersister
.getPduPersister(mContext);
134
PduPersister
.getPduPersister(context).persist(readRec, Mms.Outbox.CONTENT_URI);
NotificationTransaction.java
39
import com.google.android.mms.pdu.
PduPersister
;
87
PduPersister
.getPduPersister(context).load(mUri);
109
mUri =
PduPersister
.getPduPersister(context).persist(
174
PduPersister
p =
PduPersister
.getPduPersister(mContext);
SendTransaction.java
28
import com.google.android.mms.pdu.
PduPersister
;
94
PduPersister
persister =
PduPersister
.getPduPersister(mContext);
153
String messageId =
PduPersister
.toIsoString(conf.getMessageId());
PushReceiver.java
33
import com.google.android.mms.pdu.
PduPersister
;
80
PduPersister
p =
PduPersister
.getPduPersister(mContext);
RetrieveTransaction.java
29
import com.google.android.mms.pdu.
PduPersister
;
149
PduPersister
persister =
PduPersister
.getPduPersister(mContext);
RetryScheduler.java
24
import com.google.android.mms.pdu.
PduPersister
;
247
Cursor cursor =
PduPersister
.getPduPersister(context).getPendingMessages(
MessagingNotification.java
35
import com.google.android.mms.pdu.
PduPersister
;
572
: new EncodedStringValue(charset,
PduPersister
.getBytes(sub)).getString();
TransactionService.java
27
import com.google.android.mms.pdu.
PduPersister
;
192
Cursor cursor =
PduPersister
.getPduPersister(this).getPendingMessages(
[
all
...]
/packages/apps/Mms/src/com/android/mms/util/
AddressUtils.java
22
import com.google.android.mms.pdu.
PduPersister
;
56
byte[] bytes =
PduPersister
.getBytes(from);
DownloadManager.java
26
import com.google.android.mms.pdu.
PduPersister
;
189
NotificationInd nInd = (NotificationInd)
PduPersister
.getPduPersister(mContext)
245
NotificationInd ind = (NotificationInd)
PduPersister
/packages/apps/Mms/src/com/android/mms/ui/
MessageItem.java
34
import com.google.android.mms.pdu.
PduPersister
;
155
PduPersister
.getBytes(subject));
161
PduPersister
p =
PduPersister
.getPduPersister(mContext);
MessageUtils.java
40
import com.google.android.mms.pdu.
PduPersister
;
152
nInd = (NotificationInd)
PduPersister
.getPduPersister(
215
msg = (MultimediaMessagePdu)
PduPersister
.getPduPersister(
767
return new EncodedStringValue(charset,
PduPersister
.getBytes(rawBytes)).getString();
815
PduPersister
persister =
PduPersister
.getPduPersister(context);
[
all
...]
SlideshowEditActivity.java
28
import com.google.android.mms.pdu.
PduPersister
;
187
PduPersister
.getPduPersister(this).updateParts(mUri, pb);
SlideEditorActivity.java
38
import com.google.android.mms.pdu.
PduPersister
;
218
PduPersister
.getPduPersister(this).updateParts(mUri, pb);
732
PduPersister
persister =
PduPersister
.getPduPersister(context);
ComposeMessageActivity.java
141
import com.google.android.mms.pdu.
PduPersister
;
[
all
...]
/packages/apps/Mms/src/com/android/mms/data/
WorkingMessage.java
69
import com.google.android.mms.pdu.
PduPersister
;
220
PduPersister
persister =
PduPersister
.getPduPersister(activity);
768
PduPersister
persister =
PduPersister
.getPduPersister(mActivity);
[
all
...]
/packages/apps/Mms/src/com/android/mms/model/
ImageModel.java
33
import com.google.android.mms.pdu.
PduPersister
;
276
PduPersister
persister =
PduPersister
.getPduPersister(mContext);
SlideshowModel.java
37
import com.google.android.mms.pdu.
PduPersister
;
346
PduPersister
p =
PduPersister
.getPduPersister(context);
717
PduPersister
.getPduPersister(mContext).updateParts(messageUri, pb);
/frameworks/base/core/java/com/google/android/mms/pdu/
PduPersister.java
62
public class
PduPersister
{
63
private static final String TAG = "
PduPersister
";
87
private static
PduPersister
sPersister;
275
private
PduPersister
(Context context) {
280
/** Get(or create if not exist) an instance of
PduPersister
*/
281
public static
PduPersister
getPduPersister(Context context) {
283
sPersister = new
PduPersister
(context);
[
all
...]
Completed in 333 milliseconds