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

1 2 3

  /frameworks/base/telephony/java/android/telephony/
VisualVoicemailSmsFilterSettings.java 110 * @param destinationPort The destination port, or {@link #DESTINATION_PORT_ANY}, or {@link
113 public Builder setDestinationPort(int destinationPort) {
114 mDestinationPort = destinationPort;
146 public final int destinationPort;
161 destinationPort = builder.mDestinationPort;
192 dest.writeInt(destinationPort);
201 + ", destinationPort=" + destinationPort
SmsMessage.java 542 * @param destinationPort the port to deliver the message to at the
550 String destinationAddress, short destinationPort, byte[] data,
556 destinationAddress, destinationPort, data, statusReportRequested);
559 destinationAddress, destinationPort, data, statusReportRequested);
    [all...]
SmsManager.java     [all...]
  /device/generic/goldfish/dhcp/common/
socket.h 44 // |destinationAddress|:|destinationPort|, the message will egress on the
48 uint16_t destinationPort,
52 // |destination|:|destinationPort|. The message will be sent on the
57 uint16_t destinationPort,
socket.cpp 123 uint16_t destinationPort,
133 addr.sin_port = htons(destinationPort);
169 uint16_t destinationPort,
189 udp.dest = htons(destinationPort);
  /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) {
48 lastDataParams = new DataMessageParams(destinationAddress, scAddress, destinationPort, data, sentIntent, deliveryIntent);
122 private final short destinationPort;
127 public DataMessageParams(String destinationAddress, String scAddress, short destinationPort, byte[] data, PendingIntent sentIntent, PendingIntent deliveryIntent) {
130 this.destinationPort = destinationPort;
145 return destinationPort;
  /frameworks/opt/telephony/src/java/android/telephony/gsm/
SmsManager.java 141 * @param destinationPort the port to deliver the message to
162 String destinationAddress, String scAddress, short destinationPort,
164 mSmsMgrProxy.sendDataMessage(destinationAddress, scAddress, destinationPort,
SmsMessage.java 290 * @param destinationPort the port to deliver the message to at the
300 String destinationAddress, short destinationPort, byte[] data,
307 destinationAddress, destinationPort, data, statusReportRequested);
310 destinationAddress, destinationPort, data, statusReportRequested);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaInboundSmsHandler.java 278 int destinationPort = 0;
283 destinationPort = (0xFF & pdu[index++]) << 8;
284 destinationPort |= 0xFF & pdu[index++];
296 + ", src-port = " + sourcePort + ", dst-port = " + destinationPort
304 userData, timestamp, destinationPort, true, address, dispAddr, referenceNumber,
  /device/generic/goldfish/dhcp/client/
dhcpclient.h 72 uint16_t sourcePort, uint16_t destinationPort,
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
VisualVoicemailSmsFilter.java 159 if (settings.destinationPort
166 } else if (settings.destinationPort
168 if (settings.destinationPort != destPort) {
170 + settings.destinationPort);
  /hardware/interfaces/radio/1.1/
types.hal 187 int32_t destinationPort; // destination if relevant for the given type
  /packages/services/Telephony/src/com/android/phone/vvm/
VisualVoicemailSmsFilterConfig.java 54 .setInt(DESTINATION_PORT_KEY, settings.destinationPort)
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
SmsMessage.java 502 * @param destinationPort the port to deliver the message to at the
510 String destinationAddress, int destinationPort, byte[] data,
514 portAddrs.destPort = destinationPort;
    [all...]
  /hardware/ril/include/telephony/
ril.h     [all...]
  /external/robolectric/v3/runtime/
shadows-core-3.1-SNAPSHOT-18.jar 
shadows-core-3.1-SNAPSHOT-19.jar 
shadows-core-3.1-SNAPSHOT-21.jar 
shadows-core-3.1-SNAPSHOT-22.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
shadows-core-v18-3.1.1.jar 
shadows-core-v19-3.1.1.jar 
shadows-core-v21-3.1.1.jar 
shadows-core-v22-3.1.1.jar 
shadows-core-v23-3.1.1.jar 
  /prebuilts/misc/common/robolectric/3.4.2/lib/
framework-3.4.2.jar 

Completed in 178 milliseconds

1 2 3