Searched refs:pdu (Results 1 - 25 of 58) sorted by path

123

/frameworks/base/packages/WAPPushManager/tests/src/com/android/smspush/unitTests/
H A DClientTest.java118 EditText pdu = (EditText) findViewById(R.id.pdu);
123 // wap.dispatchWapPdu(strToHex(pdu.getText().toString()));
129 HexDump.hexStringToByteArray(pdu.getText().toString()));
131 HexDump.hexStringToByteArray(pdu.getText().toString()));
137 //HexDump.hexStringToByteArray(pdu.getText().toString()), 0, 6, 5, 5);
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;
H A DIDataVerify.aidl26 boolean verifyData(in byte[] pdu);
H A DWapPushTest.java1274 // sample pdu
1500 byte[] pdu = createPDU(1);
1501 int headerLen = pdu.length -
1541 byte[] pdu = createPDU(1);
1542 int headerLen = pdu.length - (mGsmHeader.length +
1583 byte[] pdu = createPDU(1);
1584 int headerLen = pdu.length -
1653 byte[] pdu = createPDU(1);
1654 int headerLen = pdu.length -
1713 pdu
2051 dispatchWapPdu(byte[] pdu, IWapPushManager wapPushMan) argument
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DGsmAlphabet.java449 * @param pdu the raw data from the pdu
454 public static String gsm7BitPackedToString(byte[] pdu, int offset, argument
456 return gsm7BitPackedToString(pdu, offset, lengthSeptets, 0, 0, 0);
465 * @param pdu the raw data from the pdu
475 public static String gsm7BitPackedToString(byte[] pdu, int offset, argument
509 gsmVal = (0x7f & (pdu[offset + byteOffset] >> shift));
516 gsmVal |= 0x7f & (pdu[offset + byteOffset + 1] << (8 - shift));
/frameworks/opt/mms/src/java/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 DCharacterSets.java18 package com.google.android.mms.pdu;
H A DDeliveryInd.java18 package com.google.android.mms.pdu;
H A DEncodedStringValue.java18 package com.google.android.mms.pdu;
H A DGenericPdu.java18 package com.google.android.mms.pdu;
24 * The headers of pdu.
H A DMultimediaMessagePdu.java18 package com.google.android.mms.pdu;
H A DNotificationInd.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 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 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();
H A DPduContentTypes.java18 package com.google.android.mms.pdu;
H A DPduHeaders.java18 package com.google.android.mms.pdu;
27 * All pdu header fields.
338 * @return the octet value of the pdu header
352 * Set octet value to pdu header by header field.
499 * @return the TextString value of the pdu header
507 * Set TextString value to pdu header by header field.
511 * @return the TextString value of the pdu header
548 * @return the EncodedStringValue value of the pdu header
559 * @return the EncodeStringValue array of the pdu header
573 * Set EncodedStringValue value to pdu heade
[all...]
H A DPduParser.java18 package com.google.android.mms.pdu;
22 import com.google.android.mms.pdu.EncodedStringValue;
60 * The pdu data.
65 * Store pdu headers
70 * Store pdu parts.
94 * @param pduDataStream pdu data to be parsed
101 * Parse the pdu.
103 * @return the pdu structure if parsing successfully.
227 * Parse pdu headers.
229 * @param pduDataStream pdu dat
[all...]
H A DPduPart.java18 package com.google.android.mms.pdu;
26 * The pdu part.
H A DPduPersister.java18 package com.google.android.mms.pdu;
65 import com.google.android.mms.pdu.EncodedStringValue;
526 GenericPdu pdu = null;
620 pdu = new NotificationInd(headers);
623 pdu = new DeliveryInd(headers);
626 pdu = new ReadOrigInd(headers);
629 pdu = new RetrieveConf(headers, body);
632 pdu = new SendReq(headers, body);
635 pdu = new AcknowledgeInd(headers);
638 pdu
1234 persist(GenericPdu pdu, Uri uri, boolean createThreadId, boolean groupMmsEnabled, HashMap<Uri, InputStream> preOpenedFiles) argument
[all...]
H A DQuotedPrintable.java18 package com.google.android.mms.pdu;
H A DReadOrigInd.java18 package com.google.android.mms.pdu;
H A DReadRecInd.java18 package com.google.android.mms.pdu;
24 * Constructor, used when composing a M-ReadRec.ind pdu.
H A DRetrieveConf.java18 package com.google.android.mms.pdu;

Completed in 3887 milliseconds

123