HomeSort by relevance Sort by last modified time
    Searched defs:pdu (Results 1 - 25 of 128) sorted by null

1 2 3 4 5 6

  /frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
PduContentTypes.java 18 package com.google.android.mms.pdu;
AcknowledgeInd.java 18 package com.google.android.mms.pdu;
23 * M-Acknowledge.ind PDU.
27 * Constructor, used when composing a M-Acknowledge.ind pdu.
46 * @param headers Headers for this PDU.
QuotedPrintable.java 18 package com.google.android.mms.pdu;
Base64.java 18 package com.google.android.mms.pdu;
GenericPdu.java 18 package com.google.android.mms.pdu;
24 * The headers of pdu.
38 * @param headers Headers for this PDU.
45 * Get the headers of this PDU.
47 * @return A PduHeaders of this PDU.
NotifyRespInd.java 18 package com.google.android.mms.pdu;
23 * M-NofifyResp.ind PDU.
27 * Constructor, used when composing a M-NotifyResp.ind pdu.
49 * @param headers Headers for this PDU.
SendConf.java 18 package com.google.android.mms.pdu;
25 * Since the Pdu corresponding to this class is constructed
27 * by the Pdu Parser.
39 * @param headers Headers for this PDU.
  /packages/apps/Messaging/src/android/support/v7/mms/pdu/
PduContentTypes.java 18 package android.support.v7.mms.pdu;
InvalidHeaderValueException.java 18 package android.support.v7.mms.pdu;
MmsException.java 18 package android.support.v7.mms.pdu;
AcknowledgeInd.java 18 package android.support.v7.mms.pdu;
21 * M-Acknowledge.ind PDU.
25 * Constructor, used when composing a M-Acknowledge.ind pdu.
44 * @param headers Headers for this PDU.
QuotedPrintable.java 18 package android.support.v7.mms.pdu;
Base64.java 18 package android.support.v7.mms.pdu;
GenericPdu.java 18 package android.support.v7.mms.pdu;
22 * The headers of pdu.
36 * @param headers Headers for this PDU.
43 * Get the headers of this PDU.
45 * @return A PduHeaders of this PDU.
NotifyRespInd.java 18 package android.support.v7.mms.pdu;
21 * M-NofifyResp.ind PDU.
25 * Constructor, used when composing a M-NotifyResp.ind pdu.
47 * @param headers Headers for this PDU.
SendConf.java 18 package android.support.v7.mms.pdu;
23 * Since the Pdu corresponding to this class is constructed
25 * by the Pdu Parser.
37 * @param headers Headers for this PDU.
  /packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/
PduContentTypes.java 18 package com.android.messaging.mmslib.pdu;
AcknowledgeInd.java 18 package com.android.messaging.mmslib.pdu;
23 * M-Acknowledge.ind PDU.
27 * Constructor, used when composing a M-Acknowledge.ind pdu.
46 * @param headers Headers for this PDU.
PduBody.java 18 package com.android.messaging.mmslib.pdu;
QuotedPrintable.java 18 package com.android.messaging.mmslib.pdu;
Base64.java 18 package com.android.messaging.mmslib.pdu;
GenericPdu.java 18 package com.android.messaging.mmslib.pdu;
24 * The headers of pdu.
38 * @param headers Headers for this PDU.
45 * Get the headers of this PDU.
47 * @return A PduHeaders of this PDU.
NotifyRespInd.java 18 package com.android.messaging.mmslib.pdu;
23 * M-NofifyResp.ind PDU.
27 * Constructor, used when composing a M-NotifyResp.ind pdu.
49 * @param headers Headers for this PDU.
SendConf.java 18 package com.android.messaging.mmslib.pdu;
25 * Since the Pdu corresponding to this class is constructed
27 * by the Pdu Parser.
39 * @param headers Headers for this PDU.
  /development/samples/ApiDemos/src/com/example/android/apis/os/
MmsWapPushReceiver.java 26 import com.google.android.mms.pdu.GenericPdu;
27 import com.google.android.mms.pdu.NotificationInd;
28 import com.google.android.mms.pdu.PduHeaders;
29 import com.google.android.mms.pdu.PduParser;
44 GenericPdu pdu = null; local
46 pdu = parser.parse();
50 if (pdu == null) {
54 switch (pdu.getMessageType()) {
56 final NotificationInd nInd = (NotificationInd) pdu;

Completed in 462 milliseconds

1 2 3 4 5 6