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

1 2 3

  /frameworks/opt/mms/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.
DeliveryInd.java 18 package com.google.android.mms.pdu;
23 * M-Delivery.Ind Pdu.
28 * Since the Pdu corresponding to this class is constructed
30 * by the Pdu Parser.
42 * @param headers Headers for this PDU.
MultimediaMessagePdu.java 18 package com.google.android.mms.pdu;
23 * Multimedia message PDU.
41 * @param header the header of this PDU
42 * @param body the body of this PDU
52 * @param headers Headers for this PDU.
59 * Get body of the PDU.
68 * Set body of the PDU.
ReadOrigInd.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.
ReadRecInd.java 18 package com.google.android.mms.pdu;
24 * Constructor, used when composing a M-ReadRec.ind pdu.
51 * @param headers Headers for this PDU.
NotificationInd.java 18 package com.google.android.mms.pdu;
23 * M-Notification.ind PDU.
28 * Since the Pdu corresponding to this class is constructed
30 * by the Pdu Parser.
43 * @param headers Headers for this PDU.
71 * When used in a PDU other than M-Mbox-Delete.conf and M-Delete.conf:
PduBody.java 18 package com.google.android.mms.pdu;
152 * Get pdu part by content id.
155 * @return the pdu part.
162 * Get pdu part by Content-Location. Content-Location of part is
166 * @return the pdu part.
173 * Get pdu part by name.
176 * @return the pdu part.
183 * Get pdu part by filename.
186 * @return the pdu part.
RetrieveConf.java 18 package com.google.android.mms.pdu;
23 * M-Retrive.conf Pdu.
28 * Since the Pdu corresponding to this class is constructed
30 * by the Pdu Parser.
42 * @param headers Headers for this PDU.
51 * @param headers Headers for this PDU.
52 * @param body Body of this PDu.
CharacterSets.java 18 package com.google.android.mms.pdu;
EncodedStringValue.java 18 package com.google.android.mms.pdu;
SendReq.java 18 package com.google.android.mms.pdu;
51 * Constructor, used when composing a M-Send.req pdu.
75 * @param headers Headers for this PDU.
84 * @param headers Headers for this PDU.
85 * @param body Body of this PDu.
PduPart.java 18 package com.google.android.mms.pdu;
26 * The pdu part.
91 * the PDU.
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapSmsPdu.java 75 /* Members used for pdu decoding */
89 * Create a pdu instance based on the data generated on this device.
141 /* PDU parsing/modification functionality */
155 * @return the offset in number of bytes to the parameterID entry in the pdu data.
160 ByteArrayInputStream pdu = new ByteArrayInputStream(data); local
165 pdu.skip(1); // Skip the message type
167 while (pdu.available() > 0) {
168 int currentId = pdu.read();
169 int currentLen = pdu.read();
176 pdu.skip(currentLen)
194 ByteArrayInputStream pdu = new ByteArrayInputStream(data); local
302 ByteArrayInputStream pdu = new ByteArrayInputStream(data); local
634 SmsPdu pdu = new SmsPdu(gsmStripOffScAddress(data), SMS_TYPE_GSM); local
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaSMSDispatcher.java 93 fillIn.putExtra("pdu", sms.getPdu());
107 SmsMessage.SubmitPdu pdu = SmsMessage.getSubmitPdu( local
109 HashMap map = SmsTrackerMapFactory(destAddr, scAddr, destPort, data, pdu);
119 SmsMessage.SubmitPdu pdu = SmsMessage.getSubmitPdu( local
121 HashMap map = SmsTrackerMapFactory(destAddr, scAddr, text, pdu);
184 byte[] pdu = (byte[]) map.get("pdu");
200 mCi.sendCdmaSms(pdu, reply);
202 mCi.sendImsCdmaSms(pdu, tracker.mImsRetry, tracker.mMessageRef, reply);
  /packages/apps/Mms/src/com/android/mms/transaction/
MmsMessageSender.java 38 import com.google.android.mms.pdu.EncodedStringValue;
39 import com.google.android.mms.pdu.GenericPdu;
40 import com.google.android.mms.pdu.PduHeaders;
41 import com.google.android.mms.pdu.PduPersister;
42 import com.google.android.mms.pdu.ReadRecInd;
43 import com.google.android.mms.pdu.SendReq;
76 GenericPdu pdu = p.load(mMessageUri); local
78 if (pdu.getMessageType() != PduHeaders.MESSAGE_TYPE_SEND_REQ) {
79 throw new MmsException("Invalid message: " + pdu.getMessageType());
82 SendReq sendReq = (SendReq) pdu;
    [all...]
NotificationTransaction.java 23 import static com.google.android.mms.pdu.PduHeaders.MESSAGE_TYPE_RETRIEVE_CONF;
24 import static com.google.android.mms.pdu.PduHeaders.STATUS_DEFERRED;
25 import static com.google.android.mms.pdu.PduHeaders.STATUS_RETRIEVED;
26 import static com.google.android.mms.pdu.PduHeaders.STATUS_UNRECOGNIZED;
47 import com.google.android.mms.pdu.GenericPdu;
48 import com.google.android.mms.pdu.NotificationInd;
49 import com.google.android.mms.pdu.NotifyRespInd;
50 import com.google.android.mms.pdu.PduComposer;
51 import com.google.android.mms.pdu.PduHeaders;
52 import com.google.android.mms.pdu.PduParser
177 GenericPdu pdu = new PduParser(retrieveConfData).parse(); local
    [all...]
PushReceiver.java 21 import static com.google.android.mms.pdu.PduHeaders.MESSAGE_TYPE_DELIVERY_IND;
22 import static com.google.android.mms.pdu.PduHeaders.MESSAGE_TYPE_NOTIFICATION_IND;
23 import static com.google.android.mms.pdu.PduHeaders.MESSAGE_TYPE_READ_ORIG_IND;
43 import com.google.android.mms.pdu.DeliveryInd;
44 import com.google.android.mms.pdu.GenericPdu;
45 import com.google.android.mms.pdu.NotificationInd;
46 import com.google.android.mms.pdu.PduHeaders;
47 import com.google.android.mms.pdu.PduParser;
48 import com.google.android.mms.pdu.PduPersister;
49 import com.google.android.mms.pdu.ReadOrigInd
73 GenericPdu pdu = parser.parse(); local
    [all...]
  /packages/apps/Mms/src/com/android/mms/util/
PduLoaderManager.java 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; local
184 pdu = mPduPersister.load(mUri);
185 if (pdu != null && mRequestSlideshow) {
187 ((MultimediaMessagePdu)pdu).getBody())
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
ImsSMSDispatcher.java 250 SmsMessageBase.SubmitPduBase pdu = null; local
258 pdu = com.android.internal.telephony.cdma.SmsMessage.getSubmitPdu(
262 pdu = com.android.internal.telephony.gsm.SmsMessage.getSubmitPdu(
272 pdu = com.android.internal.telephony.cdma.SmsMessage.getSubmitPdu(
277 pdu = com.android.internal.telephony.gsm.SmsMessage.getSubmitPdu(
283 // replace old smsc and pdu with newly encoded ones
284 map.put("smsc", pdu.encodedScAddress);
285 map.put("pdu", pdu.encodedMessage);

Completed in 280 milliseconds

1 2 3