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

1 2

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
InboundSmsTracker.java 109 * @param destPort the destination port
116 public InboundSmsTracker(byte[] pdu, long timestamp, int destPort, boolean is3gpp2,
120 mDestPort = destPort;
141 * @param destPort the destination port
151 public InboundSmsTracker(byte[] pdu, long timestamp, int destPort, boolean is3gpp2,
156 mDestPort = destPort;
182 int destPort = cursor.getInt(InboundSmsHandler.DESTINATION_PORT_COLUMN);
183 if ((destPort & DEST_PORT_FLAG_3GPP) != 0) {
185 } else if ((destPort & DEST_PORT_FLAG_3GPP2) != 0) {
190 mIs3gpp2WapPdu = ((destPort & DEST_PORT_FLAG_3GPP2_WAP_PDU) != 0)
    [all...]
TelephonyComponentFactory.java 122 public InboundSmsTracker makeInboundSmsTracker(byte[] pdu, long timestamp, int destPort,
125 return new InboundSmsTracker(pdu, timestamp, destPort, is3gpp2, is3gpp2WapPdu, address,
132 public InboundSmsTracker makeInboundSmsTracker(byte[] pdu, long timestamp, int destPort,
135 return new InboundSmsTracker(pdu, timestamp, destPort, is3gpp2, address, displayAddr,
InboundSmsHandler.java 696 int destPort = -1;
699 destPort = smsHeader.portAddrs.destPort;
700 if (DBG) log("destination port: " + destPort);
704 sms.getTimestampMillis(), destPort, is3gpp2(), false,
711 int destPort = (portAddrs != null ? portAddrs.destPort : -1);
714 sms.getTimestampMillis(), destPort, is3gpp2(), sms.getOriginatingAddress(),
722 // destPort = -1 indicates text messages, otherwise it's a data sms
759 int destPort = tracker.getDestPort()
    [all...]
CarrierServicesSmsFilter.java 61 int destPort,
68 mDestPort = destPort;
186 CarrierSmsFilter(byte[][] pdus, int destPort, String smsFormat) {
188 mDestPort = destPort;
VisualVoicemailSmsFilter.java 118 public static boolean filter(Context context, byte[][] pdus, String format, int destPort,
161 if (destPort == -1) {
168 if (settings.destinationPort != destPort) {
SmsDispatchersController.java 277 // data and destPort if originally sent as sendData.
280 || (map.containsKey("data") && map.containsKey("destPort"))))) {
307 Integer destPort = (Integer) map.get("destPort");
312 scAddr, destAddr, destPort.intValue(), data,
317 scAddr, destAddr, destPort.intValue(), data,
372 * @param destPort the port to deliver the message to
392 protected void sendData(String destAddr, String scAddr, int destPort,
395 mImsSmsDispatcher.sendData(destAddr, scAddr, destPort, data, sentIntent,
398 mCdmaDispatcher.sendData(destAddr, scAddr, destPort, data, sentIntent, deliveryIntent)
    [all...]
UiccSmsController.java 101 String scAddr, int destPort, byte[] data, PendingIntent sentIntent,
105 iccSmsIntMgr.sendData(callingPackage, destAddr, scAddr, destPort, data,
116 String destAddr, String scAddr, int destPort, byte[] data, PendingIntent sentIntent,
120 iccSmsIntMgr.sendDataWithSelfPermissions(callingPackage, destAddr, scAddr, destPort, data,
IccSmsInterfaceManager.java 334 int destPort, byte[] data, PendingIntent sentIntent, PendingIntent deliveryIntent) {
338 sendDataInternal(destAddr, scAddr, destPort, data, sentIntent, deliveryIntent);
345 public void sendData(String callingPackage, String destAddr, String scAddr, int destPort,
350 sendDataInternal(destAddr, scAddr, destPort, data, sentIntent, deliveryIntent);
359 * @param destPort the port to deliver the message to
380 int destPort, byte[] data, PendingIntent sentIntent, PendingIntent deliveryIntent) {
382 log("sendData: destAddr=" + destAddr + " scAddr=" + scAddr + " destPort=" +
383 destPort + " data='"+ HexDump.toHexString(data) + "' sentIntent=" +
387 mDispatchersController.sendData(destAddr, scAddr, destPort, data, sentIntent,
    [all...]
ImsSmsDispatcher.java 266 int destPort, byte[] message, boolean statusReportRequested) {
267 return SMSDispatcherUtil.getSubmitPdu(isCdmaMo(), scAddr, destAddr, destPort, message,
SMSDispatcher.java 103 protected static final String MAP_KEY_DEST_PORT = "destPort";
425 int destPort = (int) map.get(MAP_KEY_DEST_PORT);
430 mTracker.mDestAddress, destPort,
762 * @param destPort the port to deliver the message to
782 protected void sendData(String destAddr, String scAddr, int destPort,
785 scAddr, destAddr, destPort, data, (deliveryIntent != null));
    [all...]
  /frameworks/base/core/java/android/service/carrier/
ICarrierMessagingService.aidl 35 * @param destPort the destination port of a data SMS. It will be -1 for text SMS
40 in MessagePdu pdu, String format, int destPort, int subId,
65 * @param destPort port number of the recipient of the message
69 void sendDataSms(in byte[] data, int subId, String destAddress, int destPort,
CarrierMessagingService.java 119 * @param destPort the destination port of a binary SMS, this will be -1 for text SMS
126 public void onFilterSms(@NonNull MessagePdu pdu, @NonNull String format, int destPort,
147 * @param destPort the destination port of a binary SMS, this will be -1 for text SMS
155 int destPort, int subId, @NonNull final ResultCallback<Integer> callback) {
156 onFilterSms(pdu, format, destPort, subId, new ResultCallback<Boolean>() {
209 * @param destPort the destination port
214 @NonNull String destAddress, int destPort,
229 * @param destPort the destination port
235 @NonNull String destAddress, int destPort, int sendSmsFlag,
238 onSendDataSms(data, subId, destAddress, destPort, callback)
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/util/
SMSDispatcherUtil.java 185 * @param destPort the port to deliver the message to
191 String destAddr, int destPort, byte[] message, boolean statusReportRequested) {
193 return getSubmitPduCdma(scAddr, destAddr, destPort, message, statusReportRequested);
195 return getSubmitPduGsm(scAddr, destAddr, destPort, message, statusReportRequested);
204 * @param destPort the port to deliver the message to
210 int destPort, byte[] message, boolean statusReportRequested) {
212 destPort, message, statusReportRequested);
220 * @param destPort the port to deliver the message to
226 int destPort, byte[] message, boolean statusReportRequested) {
228 destPort, message, statusReportRequested)
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmInboundSmsHandler.java 101 int destPort = -1;
105 destPort = smsHeader.portAddrs.destPort;
109 destPort, mPhone.getSubId());
GsmSMSDispatcher.java 119 int destPort, byte[] message, boolean statusReportRequested) {
120 return SMSDispatcherUtil.getSubmitPduGsm(scAddr, destAddr, destPort, message,
  /frameworks/base/telephony/java/com/android/internal/telephony/
SmsHeader.java 75 public int destPort;
161 portAddrs.destPort = inStream.read();
168 portAddrs.destPort = (inStream.read() << 8) | inStream.read();
233 outStream.write(portAddrs.destPort);
238 outStream.write(portAddrs.destPort >>> 8);
239 outStream.write(portAddrs.destPort & 0x00FF);
286 builder.append("{ destPort=" + portAddrs.destPort);
ISms.aidl 98 in String scAddr, in int destPort, in byte[] data, in PendingIntent sentIntent,
126 in String scAddr, in int destPort, in byte[] data, in PendingIntent sentIntent,
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
SMSDispatcherTest.java.broken 60 assertEquals(header.portAddrs.destPort, 2948);
87 assertEquals(header.portAddrs.destPort, 2948);
GsmSmsTest.java 67 assertEquals(header.portAddrs.destPort, 2948);
83 assertEquals(header.portAddrs.destPort, 2948);
  /external/tcpdump/
print-sctp.c 502 u_short sourcePort, destPort;
519 destPort = EXTRACT_16BITS(&sctpPktHdr->destination);
532 destPort));
539 destPort));
546 if (isForCES_port(destPort)) {
547 ND_PRINT((ndo, "[%s]", tok2str(ForCES_channels, NULL, destPort)));
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaSMSDispatcher.java 86 int destPort, byte[] message, boolean statusReportRequested) {
87 return SMSDispatcherUtil.getSubmitPduCdma(scAddr, destAddr, destPort, message,
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowSmsManagerTest.java 79 final short destPort = 24;
84 smsManager.sendDataMessage(destAddress, scAddress, destPort, data, sentIntent, deliveryIntent);
89 assertThat(params.getDestinationPort()).isEqualTo(destPort);
  /external/libvncserver/libvncclient/
vncviewer.c 153 client->destPort = 5900;
245 if (!ConnectToRFBRepeater(client,client->serverHost,client->serverPort,client->destHost,client->destPort))
334 client->destPort = 5900;
339 client->destPort = atoi(colon+1);
  /libcore/ojluni/src/main/native/
DatagramChannelImpl.c 242 jint len, jobject destAddress, jint destPort)
254 if (NET_InetAddressToSockaddr(env, destAddress, destPort,
  /external/libvncserver/rfb/
rfbclient.h 335 int destPort;
374 extern rfbBool ConnectToRFBRepeater(rfbClient* client,const char *repeaterHost, int repeaterPort, const char *destHost, int destPort);

Completed in 266 milliseconds

1 2