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

/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaSMSDispatcher.java102 protected void sendData(String destAddr, String scAddr, int destPort, argument
105 scAddr, destAddr, destPort, data, (deliveryIntent != null));
106 HashMap map = getSmsTrackerMap(destAddr, scAddr, destPort, data, pdu);
H A DSmsMessage.java323 * @param destPort the port to deliver the message to at the
330 public static SubmitPdu getSubmitPdu(String scAddr, String destAddr, int destPort, argument
341 portAddrs.destPort = destPort;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DImsSMSDispatcher.java160 protected void sendData(String destAddr, String scAddr, int destPort, argument
163 mCdmaDispatcher.sendData(destAddr, scAddr, destPort,
166 mGsmDispatcher.sendData(destAddr, scAddr, destPort,
232 // data and destPort if originally sent as sendData.
235 (map.containsKey("data") && map.containsKey("destPort"))))) {
268 Integer destPort = (Integer)map.get("destPort");
273 scAddr, destAddr, destPort.intValue(), data,
278 scAddr, destAddr, destPort.intValue(), data,
H A DInboundSmsTracker.java70 * @param destPort the destination port
74 InboundSmsTracker(byte[] pdu, long timestamp, int destPort, boolean is3gpp2, argument
78 mDestPort = destPort;
97 * @param destPort the destination port
105 public InboundSmsTracker(byte[] pdu, long timestamp, int destPort, boolean is3gpp2, argument
110 mDestPort = destPort;
133 int destPort = cursor.getInt(InboundSmsHandler.DESTINATION_PORT_COLUMN);
134 if ((destPort & DEST_PORT_FLAG_3GPP) != 0) {
136 } else if ((destPort & DEST_PORT_FLAG_3GPP2) != 0) {
141 mIs3gpp2WapPdu = ((destPort
212 getRealDestPort(int destPort) argument
[all...]
H A DSmsHeader.java75 public int destPort; field in class:SmsHeader.PortAddrs
155 portAddrs.destPort = inStream.read();
162 portAddrs.destPort = (inStream.read() << 8) | inStream.read();
220 outStream.write(portAddrs.destPort);
225 outStream.write(portAddrs.destPort >>> 8);
226 outStream.write(portAddrs.destPort & 0x00FF);
267 builder.append("{ destPort=" + portAddrs.destPort);
H A DIccSmsInterfaceManager.java317 * @param destPort the port to deliver the message to
337 public void sendData(String callingPackage, String destAddr, String scAddr, int destPort, argument
343 log("sendData: destAddr=" + destAddr + " scAddr=" + scAddr + " destPort=" +
344 destPort + " data='"+ HexDump.toHexString(data) + "' sentIntent=" +
351 mDispatcher.sendData(destAddr, scAddr, destPort, data, sentIntent, deliveryIntent);
H A DSMSDispatcher.java463 * @param destPort the port to deliver the message to
483 protected abstract void sendData(String destAddr, String scAddr, int destPort, argument
1105 int destPort, byte[] data, SmsMessageBase.SubmitPduBase pdu) {
1109 map.put("destPort", destPort);
1104 getSmsTrackerMap(String destAddr, String scAddr, int destPort, byte[] data, SmsMessageBase.SubmitPduBase pdu) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmSMSDispatcher.java153 protected void sendData(String destAddr, String scAddr, int destPort, argument
156 scAddr, destAddr, destPort, data, (deliveryIntent != null));
158 HashMap map = getSmsTrackerMap(destAddr, scAddr, destPort, data, pdu);

Completed in 79 milliseconds