Searched defs:pdu (Results 1 - 25 of 53) 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.java78 for (byte[] pdu : pdus) {
79 Pair<String, String> p = parseBody(header, pdu);
112 * @param pdu the PDU to decode
115 private static Pair<String, String> parseBody(SmsCbHeader header, byte[] pdu) { argument
191 int nrPages = pdu[SmsCbHeader.PDU_HEADER_LENGTH];
193 if (pdu.length < SmsCbHeader.PDU_HEADER_LENGTH + 1 + (PDU_BODY_PAGE_LENGTH + 1)
195 throw new IllegalArgumentException("Pdu length " + pdu.length + " does not match "
205 int length = pdu[offset + PDU_BODY_PAGE_LENGTH];
212 Pair<String, String> p = unpackBody(pdu, encoding, offset, length,
221 int length = pdu
241 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/cdma/
H A DCdmaInboundSmsHandler.java256 * @param pdu The WAP-WDP PDU segment
261 private int processCdmaWapPdu(byte[] pdu, int referenceNumber, String address, String dispAddr, argument
265 int msgType = (0xFF & pdu[index++]);
270 int totalSegments = (0xFF & pdu[index++]); // >= 1
271 int segment = (0xFF & pdu[index++]); // >= 0
283 sourcePort = (0xFF & pdu[index++]) << 8;
284 sourcePort |= 0xFF & pdu[index++];
285 destinationPort = (0xFF & pdu[index++]) << 8;
286 destinationPort |= 0xFF & pdu[index++];
290 if (checkDuplicatePortOmadmWapPush(pdu, inde
[all...]
/frameworks/base/core/java/android/service/carrier/
H A DCarrierMessagingService.java117 * @param pdu the PDUs of the message
126 public void onFilterSms(@NonNull MessagePdu pdu, @NonNull String format, int destPort, argument
145 * @param pdu the PDUs of the message
154 public void onReceiveTextSms(@NonNull MessagePdu pdu, @NonNull String format, argument
156 onFilterSms(pdu, format, destPort, subId, new ResultCallback<Boolean>() {
465 public void filterSms(MessagePdu pdu, String format, int destPort, argument
467 onReceiveTextSms(pdu, format, destPort, subId,
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DImsSMSDispatcher.java215 public void injectSmsPdu(byte[] pdu, String format, PendingIntent receivedIntent) { argument
221 android.telephony.SmsMessage.createFromPdu(pdu, format);
246 // Invalid pdu format.
247 Rlog.e(TAG, "Invalid pdu format: " + format);
300 SmsMessageBase.SubmitPduBase pdu = null;
308 pdu = com.android.internal.telephony.cdma.SmsMessage.getSubmitPdu(
312 pdu = com.android.internal.telephony.gsm.SmsMessage.getSubmitPdu(
322 pdu = com.android.internal.telephony.cdma.SmsMessage.getSubmitPdu(
327 pdu = com.android.internal.telephony.gsm.SmsMessage.getSubmitPdu(
333 // replace old smsc and pdu wit
[all...]
H A DInboundSmsTracker.java80 * @param pdu the message PDU
89 public InboundSmsTracker(byte[] pdu, long timestamp, int destPort, boolean is3gpp2, argument
91 mPdu = pdu;
112 * @param pdu the message PDU
124 public InboundSmsTracker(byte[] pdu, long timestamp, int destPort, boolean is3gpp2, argument
127 mPdu = pdu;
202 values.put("pdu", HexDump.toHexString(mPdu));

Completed in 770 milliseconds

123