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

1 2 3 4 5 6 7 8

  /external/robolectric/v1/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;
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowSmsManager.java 43 public void sendDataMessage(String destinationAddress, String scAddress, short destinationPort, byte[] data, PendingIntent sentIntent, PendingIntent deliveryIntent) {
44 if (TextUtils.isEmpty(destinationAddress)) {
45 throw new IllegalArgumentException("Invalid destinationAddress");
48 lastDataParams = new DataMessageParams(destinationAddress, scAddress, destinationPort, data, sentIntent, deliveryIntent);
52 public void sendTextMessage(String destinationAddress, String scAddress, String text, PendingIntent sentIntent, PendingIntent deliveryIntent) {
53 if (TextUtils.isEmpty(destinationAddress)) {
54 throw new IllegalArgumentException("Invalid destinationAddress");
61 lastTextSmsParams = new TextSmsParams(destinationAddress, scAddress, text, sentIntent, deliveryIntent);
65 public void sendMultipartTextMessage(String destinationAddress, String scAddress, ArrayList<String> parts, ArrayList<PendingIntent> sentIntents, ArrayList<PendingIntent> deliveryIntents) {
66 if (TextUtils.isEmpty(destinationAddress)) {
    [all...]
  /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...]
  /frameworks/base/telephony/java/android/telephony/
SmsManager.java 287 * @param destinationAddress the address to send the message to
308 * @throws IllegalArgumentException if destinationAddress or text are empty
311 String destinationAddress, String scAddress, String text,
313 sendTextMessageInternal(destinationAddress, scAddress, text, sentIntent, deliveryIntent,
317 private void sendTextMessageInternal(String destinationAddress, String scAddress,
320 if (TextUtils.isEmpty(destinationAddress)) {
321 throw new IllegalArgumentException("Invalid destinationAddress");
331 destinationAddress,
362 String destinationAddress, String scAddress, String text,
364 sendTextMessageInternal(destinationAddress, scAddress, text, sentIntent, deliveryIntent
    [all...]
SmsMessage.java 503 String destinationAddress, String message, boolean statusReportRequested) {
504 return getSubmitPdu(scAddress, destinationAddress, message, statusReportRequested,
513 * @param destinationAddress the address of the destination for the message.
523 String destinationAddress, String message, boolean statusReportRequested, int subId) {
527 destinationAddress, message, statusReportRequested, null);
530 destinationAddress, message, statusReportRequested);
541 * @param destinationAddress the address of the destination for the message
550 String destinationAddress, short destinationPort, byte[] data,
556 destinationAddress, destinationPort, data, statusReportRequested);
559 destinationAddress, destinationPort, data, statusReportRequested)
    [all...]
  /system/netd/server/binder/android/net/
INetd.aidl 331 * @param destinationAddress InetAddress as string for the receiving endpoint
338 in @utf8InCpp String destinationAddress,
348 * @param destinationAddress InetAddress as string for the receiving endpoint
371 in @utf8InCpp String destinationAddress,
388 * @param destinationAddress InetAddress as string for the receiving endpoint
396 in @utf8InCpp String destinationAddress,
408 * @param destinationAddress InetAddress as string for the receiving endpoint
416 in @utf8InCpp String destinationAddress,
434 * @param destinationAddress InetAddress as string for the receiving endpoint
443 in @utf8InCpp String destinationAddress,
    [all...]
  /cts/apps/VpnApp/src/com/android/cts/vpnfirewall/
Ipv4Packet.java 38 Inet4Address destinationAddress;
61 destinationAddress = (Inet4Address) Inet4Address.getByAddress(address);
110 stream.write(destinationAddress.getAddress(), 0, 4);
136 out.append("\n Destination: ").append(destinationAddress.getHostAddress());
PingReflector.java 82 packet.sourceAddress = packet.destinationAddress;
83 packet.destinationAddress = tmp;
  /device/generic/goldfish/dhcp/common/
socket.h 44 // |destinationAddress|:|destinationPort|, the message will egress on the
47 in_addr_t destinationAddress,
socket.cpp 122 in_addr_t destinationAddress,
134 addr.sin_addr.s_addr = destinationAddress;
  /system/netd/server/
NetdNativeService.h 116 const std::string& destinationAddress,
137 const std::string& destinationAddress,
147 const std::string& destinationAddress,
157 const std::string& destinationAddress,
166 const std::string& destinationAddress,
175 const std::string& destinationAddress,
XfrmController.h 139 const std::string& destinationAddress, int32_t underlyingNetId, int32_t spi,
148 const std::string& destinationAddress,
162 const std::string& destinationAddress,
168 const std::string& destinationAddress,
174 const std::string& destinationAddress,
287 const std::string& destinationAddress, int32_t spi,
NetdNativeService.cpp 481 const std::string& destinationAddress,
490 destinationAddress,
499 const std::string& destinationAddress,
514 transformId, mode, sourceAddress, destinationAddress,
526 const std::string& destinationAddress,
536 destinationAddress,
547 const std::string& destinationAddress,
557 destinationAddress,
574 const std::string& destinationAddress,
585 destinationAddress,
    [all...]
XfrmController.cpp 457 const std::string& destinationAddress,
462 ALOGD("destinationAddress=%s", destinationAddress.c_str());
467 fillXfrmId(sourceAddress, destinationAddress, INVALID_SPI, 0, 0, transformId, &saInfo);
496 const std::string& destinationAddress, int32_t underlyingNetId, int32_t spi, int32_t markValue,
505 ALOGD("destinationAddress=%s", destinationAddress.c_str());
521 netdutils::Status ret = fillXfrmId(sourceAddress, destinationAddress, spi, markValue, markMask,
581 int32_t transformId, const std::string& sourceAddress, const std::string& destinationAddress,
586 ALOGD("destinationAddress=%s", destinationAddress.c_str())
    [all...]
  /frameworks/base/core/java/android/net/
IpSecManager.java 201 @NonNull IIpSecService service, InetAddress destinationAddress, int spi)
204 mDestinationAddress = destinationAddress;
208 destinationAddress.getHostAddress(), spi, new Binder());
268 * @param destinationAddress the destination address for traffic bearing the requested SPI.
276 @NonNull InetAddress destinationAddress) throws ResourceUnavailableException {
280 destinationAddress,
297 * @param destinationAddress the destination address for traffic bearing the requested SPI.
309 @NonNull InetAddress destinationAddress, int requestedSpi)
315 return new SecurityParameterIndex(mService, destinationAddress, requestedSpi);
    [all...]
IIpSecService.aidl 36 in String destinationAddress, int requestedSpi, in IBinder binder);
IpSecConfig.java 83 public void setDestinationAddress(String destinationAddress) {
84 mDestinationAddress = destinationAddress;
  /prebuilts/tools/common/m2/repository/io/netty/netty-handler-proxy/4.1.6.Final/
netty-handler-proxy-4.1.6.Final.jar 
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
SmsMessage.java 265 String destinationAddress, String message,
267 return getSubmitPdu(scAddress, destinationAddress, message, statusReportRequested, header,
287 String destinationAddress, String message,
290 return getSubmitPdu(scAddress, destinationAddress, message, statusReportRequested,
310 String destinationAddress, String message,
315 if (message == null || destinationAddress == null) {
363 scAddress, destinationAddress, mtiByte,
473 String destinationAddress, String message,
476 return getSubmitPdu(scAddress, destinationAddress, message, statusReportRequested, null);
483 * @param destinationAddress the address of the destination for the messag
    [all...]
  /cts/tests/tests/telephony/src/android/telephony/cts/
SmsMessageTest.java 228 String scAddress = null, destinationAddress = null;
234 SmsMessage.getSubmitPdu(scAddress, destinationAddress, message, statusReportRequested);
243 SmsMessage.getSubmitPdu(scAddress, destinationAddress, message, statusReportRequested);
255 destinationAddress = "18004664411";
259 SmsMessage.getSubmitPdu(scAddress, destinationAddress, message, statusReportRequested);
262 smsPdu = SmsMessage.getSubmitPdu(scAddress, destinationAddress, (short)80,
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapSmsPdu.java 521 String destinationAddress;
536 destinationAddress = PhoneNumberUtils.stripSeparators(address);
537 if (destinationAddress == null || destinationAddress.length() < 2) {
538 destinationAddress =
543 data = SmsMessage.getSubmitPdu(null, destinationAddress, smsFragments.get(0),
577 destinationAddress, smsFragments.get(i), false,
591 destinationAddress, uData, false).encodedMessage;
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
ISms.aidl 258 * @param destinationAddress the address to send the message to
283 in String destinationAddress, in String scAddress,
291 * @param destinationAddress the address to send the message to
332 in String destinationAddress, in String scAddress, in List<String> parts,
  /hardware/interfaces/radio/1.1/
types.hal 185 vec<uint8_t> destinationAddress; // destination address with type = family, in network
  /frameworks/base/services/core/java/com/android/server/hdmi/
HdmiCecController.java 492 private boolean sendPollMessage(int sourceAddress, int destinationAddress, int retryCount) {
497 nativeSendCecCommand(mNativePtr, sourceAddress, destinationAddress, EMPTY_BODY);
503 sourceAddress, destinationAddress, ret);

Completed in 401 milliseconds

1 2 3 4 5 6 7 8