Home | History | Annotate | Download | only in util

Lines Matching defs:pdu

28 import com.google.android.mms.pdu.GenericPdu;
29 import com.google.android.mms.pdu.MultimediaMessagePdu;
30 import com.google.android.mms.pdu.PduPersister;
46 * PduLoaderManager is used to asynchronously load mms pdu's and then build a slideshow model
47 * from that loaded pdu. Then it will call the passed in callback with the result. This class
117 removePdu(uri); // the pdu and/or slideshow might be half loaded. Make sure
180 GenericPdu pdu = null;
184 pdu = mPduPersister.load(mUri);
185 if (pdu != null && mRequestSlideshow) {
187 ((MultimediaMessagePdu)pdu).getBody());
193 final GenericPdu resultPdu = pdu;
203 Log.d(TAG, "Invoking pdu callback " + callback);
218 Log.d(TAG, "Pdu task for " + mUri + "exiting; " + mPendingTaskUris.size()
230 public PduLoaded(GenericPdu pdu, SlideshowModel slideshow) {
231 mPdu = pdu;