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

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmCellBroadcastHandler.java 87 * @param ar the AsyncResult containing the received PDUs
140 byte[][] pdus;
147 pdus = mSmsCbPageMap.get(concatInfo);
149 if (pdus == null) {
152 pdus = new byte[pageCount][];
154 mSmsCbPageMap.put(concatInfo, pdus);
158 pdus[header.getPageIndex() - 1] = receivedPdu;
160 for (byte[] pdu : pdus) {
171 pdus = new byte[1][];
172 pdus[0] = receivedPdu
    [all...]
GsmSmsCbMessage.java 58 * Create a new SmsCbMessage object from a header object plus one or more received PDUs.
60 * @param pdus PDU bytes
63 byte[][] pdus) throws IllegalArgumentException {
78 for (byte[] pdu : pdus) {
94 * Create a new SmsCbMessage object from one or more received PDUs. This is used by some
98 * @param pdus PDU bytes
100 public static SmsCbMessage createSmsCbMessage(SmsCbLocation location, byte[][] pdus)
102 SmsCbHeader header = new SmsCbHeader(pdus[0]);
103 return createSmsCbMessage(header, location, pdus);
  /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]);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1-modules/tools/
snmpget.py 18 pdus = msg.setComponentByPosition(2).getComponentByPosition(2) variable
19 pdu = pdus.setComponentByPosition(0).getComponentByPosition(0)
  /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]);
  /packages/apps/CellBroadcastReceiver/tests/src/com/android/cellbroadcastreceiver/
DialogSmsDisplayTests.java 116 byte[][] pdus = new byte[1][];
117 pdus[0] = pdu;
118 return GsmSmsCbMessage.createSmsCbMessage(sEmptyLocation, pdus);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
InboundSmsHandler.java 97 * of a multi-part SMS), we broadcast the completed PDUs as an ordered broadcast, then transition to
318 * notify the state machine to broadcast any complete PDUs that might not have been broadcast.
726 byte[][] pdus;
731 pdus = new byte[][]{tracker.getPdu()};
757 pdus = new byte[messageCount][];
762 pdus[index] = HexDump.hexStringToByteArray(cursor.getString(PDU_COLUMN));
    [all...]
  /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/src/com/android/cellbroadcastreceiver/tests/
SendTestMessages.java 393 byte[][] pdus = new byte[1][];
394 pdus[0] = pdu;
395 return createFromPdus(pdus, serialNumber, category);
398 private static SmsCbMessage createFromPdus(byte[][] pdus, int serialNumber, int category) {
400 for (byte[] pdu : pdus) {
423 return GsmSmsCbMessage.createSmsCbMessage(sEmptyLocation, pdus);
464 byte[][] pdus = new byte[2][];
465 pdus[0] = gsm7BitTestMultipage1;
466 pdus[1] = gsm7BitTestMultipage2;
467 intent.putExtra("message", createFromPdus(pdus, serialNumber, category))
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapSmsPdu.java 496 ArrayList<SmsPdu> pdus = new ArrayList<SmsPdu>(msgCount); local
512 pdus.add(newPdu);
561 pdus.add(newPdu);
565 return pdus;
569 * Generate a list of deliver PDUs. The messageText and address parameters must be different from null,
580 * For CDMA the only difference between deliver and submit pdus are the messageType,
600 * from the MAP client. (As the Android system has no interface to send pre encoded PDUs)
606 /* This is able to handle both submit and deliver PDUs */
609 /* For GSM, there is no submit pdu decoder, and most parser utils are private, and 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(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 

Completed in 294 milliseconds