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

  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastAlertService.java 67 Object[] pdus = (Object[]) extras.get("pdus"); local
69 if (pdus == null || pdus.length < 1) {
70 Log.e(TAG, "received SMS_CB_RECEIVED_ACTION with no pdus");
75 SmsCbMessage message = SmsCbMessage.createFromPdu((byte[]) pdus[0]);
77 Log.e(TAG, "failed to create SmsCbMessage from PDU: " + pdus[0]);
81 // append message bodies from any additional PDUs (GSM only)
82 for (int i = 1; i < pdus.length; i++) {
83 SmsCbMessage nextPage = SmsCbMessage.createFromPdu((byte[]) pdus[i])
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmSMSDispatcher.java 144 byte[][] pdus = new byte[1][];
145 pdus[0] = sms.getPdu();
152 dispatchPortAddressedPdus(pdus, smsHeader.portAddrs.destPort);
156 dispatchPdus(pdus);
232 SmsMessage.SubmitPdu pdus = SmsMessage.getSubmitPdu(scAddress, destinationAddress, local
236 sendRawPdu(pdus.encodedScAddress, pdus.encodedMessage, sentIntent, deliveryIntent);
323 SmsMessage.SubmitPdu pdus = SmsMessage.getSubmitPdu(scAddress, destinationAddress, local
328 map.put("smsc", pdus.encodedScAddress);
329 map.put("pdu", pdus.encodedMessage)
    [all...]
  /external/qemu/telephony/
sms.c 1234 smspdu_free_list( SmsPDU* pdus )
1236 if (pdus) {
1238 for (nn = 0; pdus[nn] != NULL; nn++)
1239 smspdu_free( pdus[nn] );
1241 free( pdus );
1270 /* count the number of SMS PDUs we'll need */
1386 SmsPDU* pdus; member in struct:SmsFragmentRec
    [all...]
  /external/qemu/android/
console.c 1401 SmsPDU* pdus; local
    [all...]

Completed in 130 milliseconds