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

/frameworks/opt/telephony/src/java/com/android/internal/telephony/util/
H A DSMSDispatcherUtil.java185 * @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, messag
190 getSubmitPdu(boolean isCdma, String scAddr, String destAddr, int destPort, byte[] message, boolean statusReportRequested) argument
209 getSubmitPduCdma(String scAddr, String destAddr, int destPort, byte[] message, boolean statusReportRequested) argument
225 getSubmitPduGsm(String scAddr, String destAddr, int destPort, byte[] message, boolean statusReportRequested) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DImsSmsDispatcher.java266 int destPort, byte[] message, boolean statusReportRequested) {
267 return SMSDispatcherUtil.getSubmitPdu(isCdmaMo(), scAddr, destAddr, destPort, message,
265 getSubmitPdu(String scAddr, String destAddr, int destPort, byte[] message, boolean statusReportRequested) argument
H A DVisualVoicemailSmsFilter.java118 public static boolean filter(Context context, byte[][] pdus, String format, int destPort, argument
161 if (destPort == -1) {
168 if (settings.destinationPort != destPort) {
H A DCarrierServicesSmsFilter.java61 int destPort,
68 mDestPort = destPort;
186 CarrierSmsFilter(byte[][] pdus, int destPort, String smsFormat) { argument
188 mDestPort = destPort;
57 CarrierServicesSmsFilter( Context context, Phone phone, byte[][] pdus, int destPort, String pduFormat, CarrierServicesSmsFilterCallbackInterface carrierServicesSmsFilterCallback, String logTag) argument
H A DInboundSmsTracker.java109 * @param destPort the destination port
116 public InboundSmsTracker(byte[] pdu, long timestamp, int destPort, boolean is3gpp2, argument
120 mDestPort = destPort;
141 * @param destPort the destination port
151 public InboundSmsTracker(byte[] pdu, long timestamp, int destPort, boolean is3gpp2, argument
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
264 getRealDestPort(int destPort) argument
[all...]
H A DTelephonyComponentFactory.java122 public InboundSmsTracker makeInboundSmsTracker(byte[] pdu, long timestamp, int destPort, argument
125 return new InboundSmsTracker(pdu, timestamp, destPort, is3gpp2, is3gpp2WapPdu, address,
132 public InboundSmsTracker makeInboundSmsTracker(byte[] pdu, long timestamp, int destPort, argument
135 return new InboundSmsTracker(pdu, timestamp, destPort, is3gpp2, address, displayAddr,
H A DSmsDispatchersController.java277 // 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, argument
395 mImsSmsDispatcher.sendData(destAddr, scAddr, destPort, data, sentIntent,
398 mCdmaDispatcher.sendData(destAddr, scAddr, destPort, dat
[all...]
H A DUiccSmsController.java101 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,
100 sendDataForSubscriber(int subId, String callingPackage, String destAddr, String scAddr, int destPort, byte[] data, PendingIntent sentIntent, PendingIntent deliveryIntent) argument
115 sendDataForSubscriberWithSelfPermissions(int subId, String callingPackage, String destAddr, String scAddr, int destPort, byte[] data, PendingIntent sentIntent, PendingIntent deliveryIntent) argument
H A DIccSmsInterfaceManager.java334 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, argument
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,
333 sendDataWithSelfPermissions(String callingPackage, String destAddr, String scAddr, int destPort, byte[] data, PendingIntent sentIntent, PendingIntent deliveryIntent) argument
379 sendDataInternal(String destAddr, String scAddr, int destPort, byte[] data, PendingIntent sentIntent, PendingIntent deliveryIntent) argument
H A DInboundSmsHandler.java696 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
920 processMessagePartWithUserLocked(InboundSmsTracker tracker, byte[][] pdus, int destPort, SmsBroadcastReceiver resultReceiver) argument
994 filterSms(byte[][] pdus, int destPort, InboundSmsTracker tracker, SmsBroadcastReceiver resultReceiver, boolean userUnlocked) argument
1122 dispatchSmsDeliveryIntent(byte[][] pdus, String format, int destPort, SmsBroadcastReceiver resultReceiver) argument
1388 CarrierServicesSmsFilterCallback(byte[][] pdus, int destPort, String smsFormat, SmsBroadcastReceiver smsBroadcastReceiver, boolean userUnlocked) argument
[all...]
H A DSMSDispatcher.java103 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, argument
785 scAddr, destAddr, destPort, data, (deliveryIntent != null));
787 HashMap map = getSmsTrackerMap(destAddr, scAddr, destPort, data, pdu);
901 int destPort, byte[] message, boolean statusReportRequested);
1798 int destPort, byte[] data, SmsMessageBase.SubmitPduBase pdu) {
1802 map.put(MAP_KEY_DEST_PORT, destPort);
900 getSubmitPdu(String scAddr, String destAddr, int destPort, byte[] message, boolean statusReportRequested) argument
1797 getSmsTrackerMap(String destAddr, String scAddr, int destPort, byte[] data, SmsMessageBase.SubmitPduBase pdu) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaSMSDispatcher.java86 int destPort, byte[] message, boolean statusReportRequested) {
87 return SMSDispatcherUtil.getSubmitPduCdma(scAddr, destAddr, destPort, message,
85 getSubmitPdu(String scAddr, String destAddr, int destPort, byte[] message, boolean statusReportRequested) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmSMSDispatcher.java119 int destPort, byte[] message, boolean statusReportRequested) {
120 return SMSDispatcherUtil.getSubmitPduGsm(scAddr, destAddr, destPort, message,
118 getSubmitPdu(String scAddr, String destAddr, int destPort, byte[] message, boolean statusReportRequested) argument
/frameworks/base/core/java/android/service/carrier/
H A DCarrierMessagingService.java119 * @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, argument
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, callbac
154 onReceiveTextSms(@onNull MessagePdu pdu, @NonNull String format, int destPort, int subId, @NonNull final ResultCallback<Integer> callback) argument
213 onSendDataSms(@onNull byte[] data, int subId, @NonNull String destAddress, int destPort, @NonNull ResultCallback<SendSmsResult> callback) argument
234 onSendDataSms(@onNull byte[] data, int subId, @NonNull String destAddress, int destPort, int sendSmsFlag, @NonNull ResultCallback<SendSmsResult> callback) argument
465 filterSms(MessagePdu pdu, String format, int destPort, int subId, final ICarrierMessagingCallback callback) argument
489 sendDataSms(byte[] data, int subId, String destAddress, int destPort, int sendSmsFlag, final ICarrierMessagingCallback callback) argument
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DSmsHeader.java75 public int destPort; field in class:SmsHeader.PortAddrs
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);
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
H A DSmsMessage.java264 * @param destPort the port to deliver the message to at the
271 public static SubmitPdu getSubmitPdu(String scAddr, String destAddr, int destPort, argument
282 portAddrs.destPort = destPort;

Completed in 260 milliseconds