Lines Matching refs:pdu

51  * Manages SMS operations such as sending data, text, and pdu SMS messages.
234 * raw pdu of the status report is in the extended data ("pdu").
264 * @param pdu is the byte array of pdu to be injected into android application framework
265 * @param format is the format of SMS pdu (3gpp or 3gpp2)
274 public void injectSmsPdu(byte[] pdu, String format, PendingIntent receivedIntent) {
278 "Invalid pdu format. format must be either 3gpp or 3gpp2");
283 iccISms.injectSmsPdu(pdu, format, receivedIntent);
367 * to the recipient. The raw pdu of the status report is in the
368 * extended data ("pdu").
431 * raw pdu of the status report is in the extended data ("pdu").
529 * @param pdu the raw PDU to store
534 * @throws IllegalArgumentException if pdu is NULL
537 public boolean copyMessageToIcc(byte[] smsc, byte[] pdu,int status) {
540 if (null == pdu) {
541 throw new IllegalArgumentException("pdu is NULL");
547 status, pdu, smsc);
569 byte[] pdu = new byte[IccConstants.SMS_RECORD_LENGTH-1];
570 Arrays.fill(pdu, (byte)0xff);
576 messageIndex, STATUS_ON_ICC_FREE, pdu);
594 * @param pdu the raw PDU to store
599 public boolean updateMessageOnIcc(int messageIndex, int newStatus, byte[] pdu) {
606 messageIndex, newStatus, pdu);
908 /** Failed because no pdu provided */
923 * @param contentUri the content Uri from which the message pdu will be read
971 * @param contentUri the content uri to which the downloaded pdu will be written
1027 * @param pdu non-empty (contains the SendConf PDU) if the message was sent successfully,
1036 public void updateMmsSendStatus(Context context, int messageRef, byte[] pdu, int status,
1043 iMms.updateMmsSendStatus(messageRef, pdu, status);
1130 * @throws IllegalArgumentException if pdu is empty
1278 * @throws IllegalArgumentException if pdu is empty
1319 * raw pdu of the status report is in the extended data ("pdu").
1365 * to the recipient. The raw pdu of the status report is in the
1366 * extended data ("pdu").