HomeSort by relevance Sort by last modified time
    Searched refs:pdus (Results 1 - 19 of 19) sorted by null

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmCellBroadcastHandler.java 88 * @param ar the AsyncResult containing the received PDUs
142 byte[][] pdus;
149 pdus = mSmsCbPageMap.get(concatInfo);
151 if (pdus == null) {
154 pdus = new byte[pageCount][];
156 mSmsCbPageMap.put(concatInfo, pdus);
159 if (VDBG) log("pdus size=" + pdus.length);
161 pdus[header.getPageIndex() - 1] = receivedPdu;
163 for (byte[] pdu : pdus) {
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/os/
SmsMessageReceiver.java 38 Object[] pdus = (Object[]) extras.get("pdus");
40 for (int i = 0; i < pdus.length; i++) {
41 SmsMessage message = SmsMessage.createFromPdu((byte[]) pdus[i]);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
VisualVoicemailSmsFilter.java 118 public static boolean filter(Context context, byte[][] pdus, String format, int destPort,
137 FullMessage fullMessage = getFullMessage(pdus, format);
143 String asciiMessage = parseAsciiPduMessage(pdus);
261 private static FullMessage getFullMessage(byte[][] pdus, String format) {
265 for (byte pdu[] : pdus) {
296 private static String parseAsciiPduMessage(byte[][] pdus) {
298 for (byte pdu[] : pdus) {
InboundSmsHandler.java 90 * of a multi-part SMS), we broadcast the completed PDUs as an ordered broadcast, then transition to
326 * notify the state machine to broadcast any complete PDUs that might not have been broadcast.
758 byte[][] pdus;
771 pdus = new byte[][]{tracker.getPdu()};
    [all...]
CarrierServicesSmsFilter.java 60 byte[][] pdus,
67 mPdus = pdus;
186 CarrierSmsFilter(byte[][] pdus, int destPort, String smsFormat) {
187 mPdus = pdus;
  /packages/apps/BasicSmsReceiver/src/com/android/basicsmsreceiver/
SmsMessageReceiver.java 40 Object[] pdus = (Object[]) extras.get("pdus");
42 for (int i = 0; i < pdus.length; i++) {
43 SmsMessage message = SmsMessage.createFromPdu((byte[]) pdus[i]);
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
VisualVoicemailSmsFilterTest.java 105 byte[][] pdus = {
109 VisualVoicemailSmsFilter.filter(mContext, pdus, SmsConstants.FORMAT_3GPP, 0, 0));
  /packages/apps/BasicSmsReceiver/tests/src/com/android/basicsmsreceiver/
DialogSmsDisplayTests.java 127 Object[] pdus = (Object[]) extras.get("pdus");
129 for (int i = 0; i < pdus.length; i++) {
130 SmsMessage message = SmsMessage.createFromPdu((byte[]) pdus[i]);
  /packages/apps/CellBroadcastReceiver/tests/testapp/src/com/android/cellbroadcastreceiver/tests/
SendTestMessages.java 394 byte[][] pdus = new byte[1][];
395 pdus[0] = pdu;
396 return createFromPdus(context, pdus, serialNumber, category);
399 private static SmsCbMessage createFromPdus(Context context, byte[][] pdus, int serialNumber,
402 for (byte[] pdu : pdus) {
425 return GsmSmsCbMessage.createSmsCbMessage(context, new SmsCbHeader(pdus[0]),
426 sEmptyLocation, pdus);
464 byte[][] pdus = new byte[2][];
465 pdus[0] = gsm7BitTestMultipage1;
466 pdus[1] = gsm7BitTestMultipage2
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmSmsCbMessage.java 93 * Create a new SmsCbMessage object from a header object plus one or more received PDUs.
95 * @param pdus PDU bytes
98 SmsCbLocation location, byte[][] pdus)
113 for (byte[] pdu : pdus) {
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapSmsPdu.java 528 ArrayList<SmsPdu> pdus = new ArrayList<SmsPdu>(msgCount); local
546 pdus.add(newPdu);
594 pdus.add(newPdu);
598 return pdus;
602 * Generate a list of deliver PDUs. The messageText and address parameters must be different
614 * For CDMA the only difference between deliver and submit pdus are the messageType,
634 * from the MAP client. (As the Android system has no interface to send pre encoded PDUs)
640 /* This is able to handle both submit and deliver PDUs */
645 only minded for submit pdus */
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
GsmSmsCbTest.java 44 byte[][] pdus = new byte[1][];
45 pdus[0] = pdu;
46 return GsmSmsCbMessage.createSmsCbMessage(getContext(), header, sTestLocation, pdus);
    [all...]
  /external/robolectric/v3/runtime/
android-all-5.1.1_r9-robolectric-1.jar 
android-all-4.4_r1-robolectric-1.jar 
android-all-5.0.0_r2-robolectric-1.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-5.1.1_r9-robolectric-1.jar 
android-all-6.0.0_r1-robolectric-0.jar 
android-all-4.4_r1-robolectric-1.jar 
android-all-5.0.0_r2-robolectric-1.jar 

Completed in 556 milliseconds