HomeSort by relevance Sort by last modified time
    Searched defs:pdu (Results 1 - 25 of 56) 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/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/cdma/
CdmaSMSDispatcher.java 98 fillIn.putExtra("pdu", sms.getPdu());
230 * Processes inbound messages that are in the WAP-WDP PDU format. See
231 * wap-259-wdp-20010614-a section 6.5 for details on the WAP-WDP PDU format.
234 * @param pdu The WAP-WDP PDU segment
239 protected int processCdmaWapPdu(byte[] pdu, int referenceNumber, String address) {
242 int msgType = (0xFF & pdu[index++]);
247 int totalSegments = (0xFF & pdu[index++]); // >= 1
248 int segment = (0xFF & pdu[index++]); // >= 0
260 sourcePort = (0xFF & pdu[index++]) << 8
290 SmsMessage.SubmitPdu pdu = SmsMessage.getSubmitPdu( local
299 SmsMessage.SubmitPdu pdu = SmsMessage.getSubmitPdu( local
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
GsmSmsTest.java 32 String pdu = "07914151551512f2040B916105551511f100006060605130308A04D4F29C0E"; local
33 SmsMessage sms = SmsMessage.createFromPdu(HexDump.hexStringToByteArray(pdu));
38 pdu = "07914151551512f2040B916105551511f100036060924180008A0DA"
40 sms = SmsMessage.createFromPdu(HexDump.hexStringToByteArray(pdu));
48 String pdu = "07914140279510F6440A8111110301003BF56080207130138A8C0B05040B8423F" local
54 SmsMessage sms = SmsMessage.createFromPdu(HexDump.hexStringToByteArray(pdu));
67 pdu = "07914140279510F6440A8111110301003BF56080207130238A3B0B05040B8423F"
70 sms = SmsMessage.createFromPdu(HexDump.hexStringToByteArray(pdu));
86 String pdu = "07912160130300F4040B914151245584F600087010807121352B1021220" local
88 SmsMessage sms = SmsMessage.createFromPdu(HexDump.hexStringToByteArray(pdu));
97 String pdu = "07916163838408F6440B816105224431F700007060217175830AA0050003" local
120 String pdu = "07912160130310F20404D0110041006060627171118A0120"; local
153 String pdu = "07912180958750F84401800500C87020026195702B06040102000200"; local
170 String pdu = "07914151551512f204038105f300007011103164638a28e6f71b50c687db" + local
201 String pdu = "07914151551512f2040B916105551511f100006080615131728A44D4F29C0E2" + local
    [all...]
  /cts/tests/tests/telephony/src/android/telephony/cts/
SmsMessageTest.java 82 String pdu = "07916164260220F0040B914151245584F600006060605130308A04D4F29C0E"; local
83 SmsMessage sms = SmsMessage.createFromPdu(hexStringToByteArray(pdu));
87 assertEquals(TPLAYER_LENGTH_FOR_PDU, SmsMessage.getTPLayerLengthForPDU(pdu));
93 assertEquals(pdu, toHexString(sms.getPdu()));
108 // Test create from null Pdu
112 //Test create from long Pdu
113 pdu = "07912160130310F2040B915121927786F300036060924180008A0DA"
115 sms = SmsMessage.createFromPdu(hexStringToByteArray(pdu));
127 pdu = "07912160130300F4040B914151245584"
129 sms = SmsMessage.createFromPdu(hexStringToByteArray(pdu));
162 String pdu = "07912160130310F20404D0110041006060627171118A0120"; local
203 String pdu = "07914140279510F6440A8111110301003BF56080207130138A8C0B05040B8423F" local
265 String pdu = "07914151551512f204038105f300007011103164638a28e6f71b50c687db" + local
    [all...]

Completed in 496 milliseconds

1 2 3