Searched refs:pdus (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DGsmSMSDispatcher.java144 byte[][] pdus = new byte[1][];
145 pdus[0] = sms.getPdu();
152 dispatchPortAddressedPdus(pdus, smsHeader.portAddrs.destPort);
156 dispatchPdus(pdus);
232 SmsMessage.SubmitPdu pdus = SmsMessage.getSubmitPdu(scAddress, destinationAddress,
236 sendRawPdu(pdus.encodedScAddress, pdus.encodedMessage, sentIntent, deliveryIntent);
323 SmsMessage.SubmitPdu pdus = SmsMessage.getSubmitPdu(scAddress, destinationAddress,
328 map.put("smsc", pdus.encodedScAddress);
329 map.put("pdu", pdus
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
H A DCdmaSMSDispatcher.java198 byte[][] pdus = new byte[1][];
199 pdus[0] = sms.getPdu();
207 dispatchPortAddressedPdus(pdus, smsHeader.portAddrs.destPort);
211 dispatchPdus(pdus);
273 byte[][] pdus = null;
298 pdus = new byte[totalSegments][];
307 pdus[cursorSequence] = HexDump.hexStringToByteArray(
329 output.write(pdus[i], 0, pdus[i].length);
341 pdus
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DSMSDispatcher.java587 byte[][] pdus = null;
612 pdus = new byte[concatRef.msgCount][];
616 pdus[cursorSequence - 1] = HexDump.hexStringToByteArray(
620 pdus[concatRef.seqNumber - 1] = sms.getPdu();
647 SmsMessage msg = SmsMessage.createFromPdu(pdus[i]);
655 dispatchPortAddressedPdus(pdus, portAddrs.destPort);
659 dispatchPdus(pdus);
667 * @param pdus The raw PDUs making up the message
669 protected void dispatchPdus(byte[][] pdus) { argument
671 intent.putExtra("pdus", pdu
681 dispatchPortAddressedPdus(byte[][] pdus, int port) argument
984 dispatchBroadcastPdus(byte[][] pdus, boolean isEmergencyMessage) argument
[all...]
/frameworks/base/core/java/android/provider/
H A DTelephony.java524 * <li><em>pdus</em> - An Object[] od byte[]s containing the PDUs
544 * <li><em>pdus</em> - An Object[] of byte[]s containing the PDUs
584 * <li><em>pdus</em> - An Object[] of byte[]s containing the PDUs
604 * <li><em>pdus</em> - An Object[] of byte[]s containing the PDUs
653 Object[] messages = (Object[]) intent.getSerializableExtra("pdus");
659 byte[][] pdus = new byte[pduObjs.length][];
660 int pduCount = pdus.length;
663 pdus[i] = pduObjs[i];
664 msgs[i] = SmsMessage.createFromPdu(pdus[i]);

Completed in 623 milliseconds