Searched refs:pdu (Results 51 - 58 of 58) sorted by relevance

123

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DCommandsInterface.java992 * pdu is SMS in PDU format as an ASCII hex string
995 void sendSMS (String smscPDU, String pdu, Message response); argument
998 * @param pdu is CDMA-SMS in internal pseudo-PDU format
1001 void sendCdmaSms(byte[] pdu, Message response); argument
1027 * @param pdu message PDU, as hex string
1032 void writeSmsToSim(int status, String smsc, String pdu, Message response); argument
1034 void writeSmsToRuim(int status, String pdu, Message response); argument
H A DWspTypeDecoder.java206 public WspTypeDecoder(byte[] pdu) { argument
207 wspData = pdu;
211 * Decode the "Text-string" type for WSP pdu
213 * @param startIndex The starting position of the "Text-string" in this pdu
216 * return value can be retrieved by getValueString() method length of data in pdu can be
234 * Decode the "Token-text" type for WSP pdu
236 * @param startIndex The starting position of the "Token-text" in this pdu
240 * length of data in pdu can be retrieved by getDecodedDataLength() method
254 * Decode the "Short-integer" type for WSP pdu
256 * @param startIndex The starting position of the "Short-integer" in this pdu
[all...]
H A DRIL.java1189 sendSMS (String smscPDU, String pdu, Message result) { argument
1195 rr.mp.writeString(pdu);
1203 sendCdmaSms(byte[] pdu, Message result) { argument
1207 ByteArrayInputStream bais = new ByteArrayInputStream(pdu);
1281 public void writeSmsToSim(int status, String smsc, String pdu, Message response) { argument
1288 rr.mp.writeString(pdu);
1300 public void writeSmsToRuim(int status, String pdu, Message response) { argument
1307 rr.mp.writeString(pdu);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DModelInterpreter.java381 StringBuilder pdu = new StringBuilder();
383 pdu.append ("00"); //SMSC address - 0 bytes
385 pdu.append ("04"); // Message type indicator
388 pdu.append("918100551521F0");
391 pdu.append("0000");
395 pdu.append (c.
400 println("+CMT: ,1\r" + pdu.toString());
562 String pdu;
565 pdu = lineReader.getNextLineCtrlZ();
H A DSimulatedCommands.java939 * pdu is SMS in PDU format as an ASCII hex string
942 public void sendSMS (String smscPDU, String pdu, Message result) {unimplemented(result);} argument
954 public void writeSmsToSim(int status, String smsc, String pdu, Message response) { argument
959 public void writeSmsToRuim(int status, String pdu, Message response) { argument
1450 public void sendCdmaSms(byte[] pdu, Message response){ argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DSIMRecords.java1217 byte[] pdu = new byte[n - 1];
1218 System.arraycopy(ba, 1, pdu, 0, n - 1);
1219 SmsMessage message = SmsMessage.createFromPdu(pdu);
1243 byte[] pdu = new byte[n - 1];
1244 System.arraycopy(ba, 1, pdu, 0, n - 1);
1245 SmsMessage message = SmsMessage.createFromPdu(pdu);
/frameworks/opt/mms/src/java/com/google/android/mms/pdu/
H A DPduHeaders.java18 package com.google.android.mms.pdu;
27 * All pdu header fields.
338 * @return the octet value of the pdu header
352 * Set octet value to pdu header by header field.
499 * @return the TextString value of the pdu header
507 * Set TextString value to pdu header by header field.
511 * @return the TextString value of the pdu header
548 * @return the EncodedStringValue value of the pdu header
559 * @return the EncodeStringValue array of the pdu header
573 * Set EncodedStringValue value to pdu heade
[all...]
H A DPduParser.java18 package com.google.android.mms.pdu;
22 import com.google.android.mms.pdu.EncodedStringValue;
60 * The pdu data.
65 * Store pdu headers
70 * Store pdu parts.
94 * @param pduDataStream pdu data to be parsed
101 * Parse the pdu.
103 * @return the pdu structure if parsing successfully.
227 * Parse pdu headers.
229 * @param pduDataStream pdu dat
[all...]

Completed in 1079 milliseconds

123