Searched defs:pdu (Results 1 - 25 of 51) sorted by relevance

123

/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
H A DPduContentTypes.java18 package com.google.android.mms.pdu;
H A DQuotedPrintable.java18 package com.google.android.mms.pdu;
H A DAcknowledgeInd.java18 package com.google.android.mms.pdu;
27 * Constructor, used when composing a M-Acknowledge.ind pdu.
H A DBase64.java18 package com.google.android.mms.pdu;
H A DDeliveryInd.java18 package com.google.android.mms.pdu;
H A DGenericPdu.java18 package com.google.android.mms.pdu;
24 * The headers of pdu.
H A DSendConf.java18 package com.google.android.mms.pdu;
H A DNotifyRespInd.java18 package com.google.android.mms.pdu;
27 * Constructor, used when composing a M-NotifyResp.ind pdu.
H A DReadOrigInd.java18 package com.google.android.mms.pdu;
H A DMultimediaMessagePdu.java18 package com.google.android.mms.pdu;
H A DNotificationInd.java18 package com.google.android.mms.pdu;
H A DPduBody.java18 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.
H A DReadRecInd.java18 package com.google.android.mms.pdu;
24 * Constructor, used when composing a M-ReadRec.ind pdu.
H A DEncodedStringValue.java18 package com.google.android.mms.pdu;
H A DRetrieveConf.java18 package com.google.android.mms.pdu;
H A DSendReq.java18 package com.google.android.mms.pdu;
51 * Constructor, used when composing a M-Send.req pdu.
H A DPduComposer.java18 package com.google.android.mms.pdu;
111 * Header of this pdu.
133 * @param pdu the pdu to be composed
135 public PduComposer(Context context, GenericPdu pdu) { argument
136 mPdu = pdu;
138 mPduHeader = pdu.getPduHeaders();
/frameworks/opt/telephony/src/java/com/google/android/mms/util/
H A DPduCacheEntry.java20 import com.google.android.mms.pdu.GenericPdu;
27 public PduCacheEntry(GenericPdu pdu, int msgBox, long threadId) { argument
28 mPdu = pdu;
/frameworks/base/packages/WAPPushManager/tests/src/com/android/smspush/unitTests/
H A DDataVerify.java66 * Compare pdu and received pdu
68 public synchronized boolean verifyData(byte[] pdu) { argument
82 Log.v(LOG_TAG, "verify pdu");
83 boolean ret = arrayCompare(pdu, mLastReceivedPdu);
107 public static void SetLastReceivedPdu(byte[] pdu) { argument
108 mLastReceivedPdu = pdu;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmSmsCbMessage.java73 for (byte[] pdu : pdus) {
74 Pair<String, String> p = parseBody(header, pdu);
107 * @param pdu the PDU to decode
110 private static Pair<String, String> parseBody(SmsCbHeader header, byte[] pdu) { argument
186 int nrPages = pdu[SmsCbHeader.PDU_HEADER_LENGTH];
188 if (pdu.length < SmsCbHeader.PDU_HEADER_LENGTH + 1 + (PDU_BODY_PAGE_LENGTH + 1)
190 throw new IllegalArgumentException("Pdu length " + pdu.length + " does not match "
200 int length = pdu[offset + PDU_BODY_PAGE_LENGTH];
207 Pair<String, String> p = unpackBody(pdu, encoding, offset, length,
216 int length = pdu
236 unpackBody(byte[] pdu, int encoding, int offset, int length, boolean hasLanguageIndicator, String language) argument
[all...]
/frameworks/opt/telephony/src/java/android/telephony/gsm/
H A DSmsManager.java25 * Manages SMS operations such as sending data, text, and pdu SMS messages.
70 * raw pdu of the status report is in the extended data ("pdu").
121 * to the recipient. The raw pdu of the status report is in the
122 * extended data ("pdu").
155 * raw pdu of the status report is in the extended data ("pdu").
172 * @param pdu the raw PDU to store
180 public final boolean copyMessageToSim(byte[] smsc, byte[] pdu, int status) { argument
181 return mSmsMgrProxy.copyMessageToIcc(smsc, pdu, statu
210 updateMessageOnSim(int messageIndex, int newStatus, byte[] pdu) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DWapPushOverSms.java19 import static com.google.android.mms.pdu.PduHeaders.MESSAGE_TYPE_DELIVERY_IND;
20 import static com.google.android.mms.pdu.PduHeaders.MESSAGE_TYPE_NOTIFICATION_IND;
21 import static com.google.android.mms.pdu.PduHeaders.MESSAGE_TYPE_READ_ORIG_IND;
51 import com.google.android.mms.pdu.DeliveryInd;
52 import com.google.android.mms.pdu.GenericPdu;
53 import com.google.android.mms.pdu.NotificationInd;
54 import com.google.android.mms.pdu.PduHeaders;
55 import com.google.android.mms.pdu.PduParser;
56 import com.google.android.mms.pdu.PduPersister;
57 import com.google.android.mms.pdu
121 dispatchWapPdu(byte[] pdu, BroadcastReceiver receiver, InboundSmsHandler handler) argument
423 getDeliveryOrReadReportThreadId(Context context, GenericPdu pdu) argument
[all...]
H A DImsSMSDispatcher.java214 protected void injectSmsPdu(byte[] pdu, String format, PendingIntent receivedIntent) { argument
220 android.telephony.SmsMessage.createFromPdu(pdu, format);
240 // Invalid pdu format.
241 Rlog.e(TAG, "Invalid pdu format: " + format);
294 SmsMessageBase.SubmitPduBase pdu = null;
302 pdu = com.android.internal.telephony.cdma.SmsMessage.getSubmitPdu(
306 pdu = com.android.internal.telephony.gsm.SmsMessage.getSubmitPdu(
316 pdu = com.android.internal.telephony.cdma.SmsMessage.getSubmitPdu(
321 pdu = com.android.internal.telephony.gsm.SmsMessage.getSubmitPdu(
327 // replace old smsc and pdu wit
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaInboundSmsHandler.java272 * @param pdu The WAP-WDP PDU segment
277 private int processCdmaWapPdu(byte[] pdu, int referenceNumber, String address, argument
281 int msgType = (0xFF & pdu[index++]);
286 int totalSegments = (0xFF & pdu[index++]); // >= 1
287 int segment = (0xFF & pdu[index++]); // >= 0
299 sourcePort = (0xFF & pdu[index++]) << 8;
300 sourcePort |= 0xFF & pdu[index++];
301 destinationPort = (0xFF & pdu[index++]) << 8;
302 destinationPort |= 0xFF & pdu[index++];
306 if (checkDuplicatePortOmadmWapPush(pdu, inde
[all...]
/frameworks/base/core/java/android/service/carrier/
H A DCarrierMessagingService.java93 * @param pdu the PDUs of the message
100 public void onFilterSms(@NonNull MessagePdu pdu, @NonNull String format, int destPort, argument
409 public void filterSms(MessagePdu pdu, String format, int destPort, argument
411 onFilterSms(pdu, format, destPort, subId, new ResultCallback<Boolean>() {

Completed in 219 milliseconds

123