Lines Matching refs:pdus
664 byte[][] pdus; in handleGsmBroadcastSms()
671 pdus = mSmsCbPageMap.get(concatInfo); in handleGsmBroadcastSms()
673 if (pdus == null) { in handleGsmBroadcastSms()
676 pdus = new byte[pageCount][]; in handleGsmBroadcastSms()
678 mSmsCbPageMap.put(concatInfo, pdus); in handleGsmBroadcastSms()
681 if (VDBG) log("pdus size=" + pdus.length); in handleGsmBroadcastSms()
683 pdus[header.getPageIndex() - 1] = receivedPdu; in handleGsmBroadcastSms()
685 for (byte[] pdu : pdus) { in handleGsmBroadcastSms()
697 pdus = new byte[1][]; in handleGsmBroadcastSms()
698 pdus[0] = receivedPdu; in handleGsmBroadcastSms()
714 return GsmSmsCbMessage.createSmsCbMessage(mContext, header, location, pdus, slotIndex); in handleGsmBroadcastSms()