Searched defs:destinationAddress (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/telephony/java/android/telephony/gsm/
H A DSmsManager.java54 * @param destinationAddress the address to send the message to
72 * @throws IllegalArgumentException if destinationAddress or text are empty
77 String destinationAddress, String scAddress, String text,
79 mSmsMgrProxy.sendTextMessage(destinationAddress, scAddress, text,
102 * @param destinationAddress the address to send the message to
124 * @throws IllegalArgumentException if destinationAddress or data are empty
129 String destinationAddress, String scAddress, ArrayList<String> parts,
131 mSmsMgrProxy.sendMultipartTextMessage(destinationAddress, scAddress, parts,
138 * @param destinationAddress the address to send the message to
157 * @throws IllegalArgumentException if destinationAddress o
76 sendTextMessage( String destinationAddress, String scAddress, String text, PendingIntent sentIntent, PendingIntent deliveryIntent) argument
128 sendMultipartTextMessage( String destinationAddress, String scAddress, ArrayList<String> parts, ArrayList<PendingIntent> sentIntents, ArrayList<PendingIntent> deliveryIntents) argument
161 sendDataMessage( String destinationAddress, String scAddress, short destinationPort, byte[] data, PendingIntent sentIntent, PendingIntent deliveryIntent) argument
[all...]
H A DSmsMessage.java246 String destinationAddress, String message,
253 destinationAddress, message, statusReportRequested,
257 destinationAddress, message, statusReportRequested, header);
274 String destinationAddress, String message, boolean statusReportRequested) {
280 destinationAddress, message, statusReportRequested, null);
283 destinationAddress, message, statusReportRequested);
293 * @param destinationAddress the address of the destination for the message
304 String destinationAddress, short destinationPort, byte[] data,
311 destinationAddress, destinationPort, data, statusReportRequested);
314 destinationAddress, destinationPor
245 getSubmitPdu(String scAddress, String destinationAddress, String message, boolean statusReportRequested, byte[] header) argument
273 getSubmitPdu(String scAddress, String destinationAddress, String message, boolean statusReportRequested) argument
303 getSubmitPdu(String scAddress, String destinationAddress, short destinationPort, byte[] data, boolean statusReportRequested) argument
[all...]
/frameworks/base/telephony/java/android/telephony/
H A DSmsManager.java50 * @param destinationAddress the address to send the message to
71 * @throws IllegalArgumentException if destinationAddress or text are empty
74 String destinationAddress, String scAddress, String text,
76 if (TextUtils.isEmpty(destinationAddress)) {
77 throw new IllegalArgumentException("Invalid destinationAddress");
87 iccISms.sendText(destinationAddress, scAddress, text, sentIntent, deliveryIntent);
111 * @param destinationAddress the address to send the message to
136 * @throws IllegalArgumentException if destinationAddress or data are empty
139 String destinationAddress, String scAddress, ArrayList<String> parts,
141 if (TextUtils.isEmpty(destinationAddress)) {
73 sendTextMessage( String destinationAddress, String scAddress, String text, PendingIntent sentIntent, PendingIntent deliveryIntent) argument
138 sendMultipartTextMessage( String destinationAddress, String scAddress, ArrayList<String> parts, ArrayList<PendingIntent> sentIntents, ArrayList<PendingIntent> deliveryIntents) argument
199 sendDataMessage( String destinationAddress, String scAddress, short destinationPort, byte[] data, PendingIntent sentIntent, PendingIntent deliveryIntent) argument
[all...]
H A DSmsMessage.java398 String destinationAddress, String message, boolean statusReportRequested) {
404 destinationAddress, message, statusReportRequested, null);
407 destinationAddress, message, statusReportRequested);
418 * @param destinationAddress the address of the destination for the message
427 String destinationAddress, short destinationPort, byte[] data,
434 destinationAddress, destinationPort, data, statusReportRequested);
437 destinationAddress, destinationPort, data, statusReportRequested);
397 getSubmitPdu(String scAddress, String destinationAddress, String message, boolean statusReportRequested) argument
426 getSubmitPdu(String scAddress, String destinationAddress, short destinationPort, byte[] data, boolean statusReportRequested) argument
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
H A DCdmaSMSDispatcher.java307 protected void sendNewSubmitPdu(String destinationAddress, String scAddress, argument
324 SmsMessage.SubmitPdu submitPdu = SmsMessage.getSubmitPdu(destinationAddress,
327 sendSubmitPdu(submitPdu, sentIntent, deliveryIntent, destinationAddress);
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DGsmSMSDispatcher.java274 protected void sendNewSubmitPdu(String destinationAddress, String scAddress, argument
277 SmsMessage.SubmitPdu pdu = SmsMessage.getSubmitPdu(scAddress, destinationAddress,
282 destinationAddress);
H A DSmsMessage.java213 String destinationAddress, String message,
215 return getSubmitPdu(scAddress, destinationAddress, message, statusReportRequested, header,
234 String destinationAddress, String message,
239 if (message == null || destinationAddress == null) {
275 scAddress, destinationAddress, mtiByte,
377 String destinationAddress, String message,
380 return getSubmitPdu(scAddress, destinationAddress, message, statusReportRequested, null);
387 * @param destinationAddress the address of the destination for the message
396 String destinationAddress, int destinationPort, byte[] data,
417 scAddress, destinationAddress, (byt
212 getSubmitPdu(String scAddress, String destinationAddress, String message, boolean statusReportRequested, byte[] header) argument
233 getSubmitPdu(String scAddress, String destinationAddress, String message, boolean statusReportRequested, byte[] header, int encoding, int languageTable, int languageShiftTable) argument
376 getSubmitPdu(String scAddress, String destinationAddress, String message, boolean statusReportRequested) argument
395 getSubmitPdu(String scAddress, String destinationAddress, int destinationPort, byte[] data, boolean statusReportRequested) argument
453 getSubmitPduHead( String scAddress, String destinationAddress, byte mtiByte, boolean statusReportRequested, SubmitPdu ret) argument
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DSMSDispatcher.java834 protected abstract void sendNewSubmitPdu(String destinationAddress, String scAddress, argument
1007 String destinationAddress = (String) map.get("destination");
1027 sendMultipartText(destinationAddress, scAddress, parts, sentIntents, deliveryIntents);

Completed in 174 milliseconds