Searched defs:pdus (Results 1 - 3 of 3) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DVisualVoicemailSmsFilter.java58 public static boolean filter(Context context, byte[][] pdus, String format, int destPort, argument
73 String messageBody = getFullMessage(pdus, format);
79 String asciiMessage = parseAsciiPduMessage(pdus);
156 private static String getFullMessage(byte[][] pdus, String format) { argument
158 for (byte pdu[] : pdus) {
173 private static String parseAsciiPduMessage(byte[][] pdus) { argument
175 for (byte pdu[] : pdus) {
H A DInboundSmsHandler.java729 byte[][] pdus;
734 pdus = new byte[][]{tracker.getPdu()};
760 pdus = new byte[messageCount][];
765 pdus[index] = HexDump.hexStringToByteArray(cursor.getString(PDU_COLUMN));
789 List<byte[]> pduList = Arrays.asList(pdus);
799 return processMessagePartWithUserLocked(tracker, pdus, destPort, resultReceiver);
805 for (byte[] pdu : pdus) {
837 pdus, destPort, tracker, resultReceiver, true /* userUnlocked */);
840 dispatchSmsDeliveryIntent(pdus, tracker.getFormat(), destPort, resultReceiver);
856 byte[][] pdus, in
855 processMessagePartWithUserLocked(InboundSmsTracker tracker, byte[][] pdus, int destPort, SmsBroadcastReceiver resultReceiver) argument
928 filterSms(byte[][] pdus, int destPort, InboundSmsTracker tracker, SmsBroadcastReceiver resultReceiver, boolean userUnlocked) argument
1104 dispatchSmsDeliveryIntent(byte[][] pdus, String format, int destPort, BroadcastReceiver resultReceiver) argument
1354 CarrierSmsFilter(byte[][] pdus, int destPort, String smsFormat, SmsBroadcastReceiver smsBroadcastReceiver) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmSmsCbMessage.java60 * @param pdus PDU bytes
63 byte[][] pdus) throws IllegalArgumentException {
78 for (byte[] pdu : pdus) {
98 * @param pdus PDU bytes
100 public static SmsCbMessage createSmsCbMessage(SmsCbLocation location, byte[][] pdus) argument
102 SmsCbHeader header = new SmsCbHeader(pdus[0]);
103 return createSmsCbMessage(header, location, pdus);
62 createSmsCbMessage(SmsCbHeader header, SmsCbLocation location, byte[][] pdus) argument

Completed in 94 milliseconds