HomeSort by relevance Sort by last modified time
    Searched refs:destinationAddress (Results 1 - 25 of 47) sorted by null

1 2

  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSmsManager.java 27 String destinationAddress, String scAddress, String text,
30 if (TextUtils.isEmpty(destinationAddress))
31 throw new IllegalArgumentException("Invalid destinationAddress");
37 destinationAddress,
53 private String destinationAddress;
60 String destinationAddress, String scAddress, String text,
62 this.destinationAddress = destinationAddress;
70 return destinationAddress;
  /frameworks/opt/telephony/src/java/android/telephony/gsm/
SmsManager.java 54 * @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 or data are empt
    [all...]
SmsMessage.java 242 String destinationAddress, String message,
249 destinationAddress, message, statusReportRequested,
253 destinationAddress, message, statusReportRequested, header);
270 String destinationAddress, String message, boolean statusReportRequested) {
276 destinationAddress, message, statusReportRequested, null);
279 destinationAddress, message, statusReportRequested);
289 * @param destinationAddress the address of the destination for the message
300 String destinationAddress, short destinationPort, byte[] data,
307 destinationAddress, destinationPort, data, statusReportRequested);
310 destinationAddress, destinationPort, data, statusReportRequested)
    [all...]
  /cts/tests/tests/telephony/src/android/telephony/cts/
SmsMessageTest.java 219 String scAddress = null, destinationAddress = null;
225 SmsMessage.getSubmitPdu(scAddress, destinationAddress, message, statusReportRequested);
234 SmsMessage.getSubmitPdu(scAddress, destinationAddress, message, statusReportRequested);
246 destinationAddress = "18004664411";
250 SmsMessage.getSubmitPdu(scAddress, destinationAddress, message, statusReportRequested);
253 smsPdu = SmsMessage.getSubmitPdu(scAddress, destinationAddress, (short)80,
  /frameworks/opt/telephony/src/java/android/telephony/
SmsManager.java 234 * @param destinationAddress the address to send the message to
255 * @throws IllegalArgumentException if destinationAddress or text are empty
258 String destinationAddress, String scAddress, String text,
260 if (TextUtils.isEmpty(destinationAddress)) {
261 throw new IllegalArgumentException("Invalid destinationAddress");
271 destinationAddress,
342 * @param destinationAddress the address to send the message to
367 * @throws IllegalArgumentException if destinationAddress or data are empty
370 String destinationAddress, String scAddress, ArrayList<String> parts,
372 if (TextUtils.isEmpty(destinationAddress)) {
    [all...]
SmsMessage.java 453 String destinationAddress, String message, boolean statusReportRequested) {
458 destinationAddress, message, statusReportRequested, null);
461 destinationAddress, message, statusReportRequested);
472 * @param destinationAddress the address of the destination for the message
481 String destinationAddress, short destinationPort, byte[] data,
487 destinationAddress, destinationPort, data, statusReportRequested);
490 destinationAddress, destinationPort, data, statusReportRequested);
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapSmsPdu.java 489 String destinationAddress;
504 destinationAddress = PhoneNumberUtils.stripSeparators(address);
505 if(destinationAddress == null || destinationAddress.length() < 2) {
506 destinationAddress = "12"; // Ensure we add a number at least 2 digits as specified in the GSM spec.
510 data = SmsMessage.getSubmitPdu(null, destinationAddress, smsFragments.get(0), false).encodedMessage;
544 data = com.android.internal.telephony.gsm.SmsMessage.getSubmitPdu(null, destinationAddress,
557 data = com.android.internal.telephony.cdma.SmsMessage.getSubmitPdu(destinationAddress,
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
ISms.aidl 229 * @param destinationAddress the address to send the message to
248 void sendMultipartText(String callingPkg, in String destinationAddress, in String scAddress,
255 * @param destinationAddress the address to send the message to
276 in String destinationAddress, in String scAddress,
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
SmsMessage.java 214 String destinationAddress, String message,
216 return getSubmitPdu(scAddress, destinationAddress, message, statusReportRequested, header,
236 String destinationAddress, String message,
241 if (message == null || destinationAddress == null) {
278 scAddress, destinationAddress, mtiByte,
380 String destinationAddress, String message,
383 return getSubmitPdu(scAddress, destinationAddress, message, statusReportRequested, null);
390 * @param destinationAddress the address of the destination for the message
399 String destinationAddress, int destinationPort, byte[] data,
420 scAddress, destinationAddress, (byte) 0x41, // MTI = SMS-SUBMIT
    [all...]
GsmSMSDispatcher.java 216 protected SmsTracker getNewSubmitPduTracker(String destinationAddress, String scAddress,
221 SmsMessage.SubmitPdu pdu = SmsMessage.getSubmitPdu(scAddress, destinationAddress,
225 HashMap map = getSmsTrackerMap(destinationAddress, scAddress,
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaSMSDispatcher.java 168 protected SmsTracker getNewSubmitPduTracker(String destinationAddress, String scAddress,
187 SmsMessage.SubmitPdu submitPdu = SmsMessage.getSubmitPdu(destinationAddress,
190 HashMap map = getSmsTrackerMap(destinationAddress, scAddress,
  /frameworks/base/services/core/java/com/android/server/hdmi/
HdmiCecController.java 468 private boolean sendPollMessage(int sourceAddress, int destinationAddress, int retryCount) {
475 if (nativeSendCecCommand(mNativePtr, sourceAddress, destinationAddress, EMPTY_BODY)
  /libcore/luni/src/main/java/java/net/
InetAddress.java 724 final InetAddress destinationAddress = this;
731 if (isReachable(destinationAddress, sourceAddress, timeout)) {
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
ImsSMSDispatcher.java 356 protected SmsTracker getNewSubmitPduTracker(String destinationAddress, String scAddress,
SMSDispatcher.java     [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 
  /external/robolectric/lib/main/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/19/
android.jar 
  /prebuilts/sdk/21/
android.jar 

Completed in 1022 milliseconds

1 2