Lines Matching refs:pdus
623 byte[][] pdus; in handleGsmBroadcastSms()
630 pdus = mSmsCbPageMap.get(concatInfo); in handleGsmBroadcastSms()
632 if (pdus == null) { in handleGsmBroadcastSms()
635 pdus = new byte[pageCount][]; in handleGsmBroadcastSms()
637 mSmsCbPageMap.put(concatInfo, pdus); in handleGsmBroadcastSms()
640 if (VDBG) log("pdus size=" + pdus.length); in handleGsmBroadcastSms()
642 pdus[header.getPageIndex() - 1] = receivedPdu; in handleGsmBroadcastSms()
644 for (byte[] pdu : pdus) { in handleGsmBroadcastSms()
656 pdus = new byte[1][]; in handleGsmBroadcastSms()
657 pdus[0] = receivedPdu; in handleGsmBroadcastSms()
673 return GsmSmsCbMessage.createSmsCbMessage(mContext, header, location, pdus, slotIndex); in handleGsmBroadcastSms()