Home
last modified time | relevance | path

Searched refs:smscPdu (Results 1 – 4 of 4) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DRadioMessagingProxy.java296 public void sendImsSms(int serial, String smscPdu, String gsmPdu, byte[] cdmaPdu, int retry, in sendImsSms() argument
307 RILUtils.convertToHalGsmSmsMessageAidl(smscPdu, gsmPdu)}; in sendImsSms()
323 msg.gsmMessage.add(RILUtils.convertToHalGsmSmsMessage(smscPdu, gsmPdu)); in sendImsSms()
340 public void sendSms(int serial, String smscPdu, String pdu) throws RemoteException { in sendSms() argument
343 mMessagingProxy.sendSms(serial, RILUtils.convertToHalGsmSmsMessageAidl(smscPdu, pdu)); in sendSms()
346 serial, RILUtils.convertToHalGsmSmsMessage(smscPdu, pdu)); in sendSms()
348 mRadioProxy.sendSms(serial, RILUtils.convertToHalGsmSmsMessage(smscPdu, pdu)); in sendSms()
360 public void sendSmsExpectMore(int serial, String smscPdu, String pdu) throws RemoteException { in sendSmsExpectMore() argument
364 RILUtils.convertToHalGsmSmsMessageAidl(smscPdu, pdu)); in sendSmsExpectMore()
367 RILUtils.convertToHalGsmSmsMessage(smscPdu, pdu)); in sendSmsExpectMore()
[all …]
DRIL.java2077 public void sendSMS(String smscPdu, String pdu, Message result) { in sendSMS() argument
2091 messagingProxy.sendSms(rr.mSerial, smscPdu, pdu); in sendSMS()
2116 public void sendSMSExpectMore(String smscPdu, String pdu, Message result) { in sendSMSExpectMore() argument
2131 messagingProxy.sendSmsExpectMore(rr.mSerial, smscPdu, pdu); in sendSMSExpectMore()
3916 public void sendImsGsmSms(String smscPdu, String pdu, int retry, int messageRef, in sendImsGsmSms() argument
3931 messagingProxy.sendImsSms(rr.mSerial, smscPdu, pdu, null, retry, messageRef); in sendImsGsmSms()
DRILUtils.java611 String smscPdu, String pdu) { in convertToHalGsmSmsMessage() argument
614 msg.smscPdu = smscPdu == null ? "" : smscPdu; in convertToHalGsmSmsMessage()
626 String smscPdu, String pdu) { in convertToHalGsmSmsMessageAidl() argument
629 msg.smscPdu = convertNullToEmptyString(smscPdu); in convertToHalGsmSmsMessageAidl()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DRILTest.java858 String smscPdu = "smscPdu"; in testSendSMS() local
861 msg.smscPdu = smscPdu; in testSendSMS()
863 mRILUnderTest.sendSMS(smscPdu, pdu, obtainMessage()); in testSendSMS()
876 String smscPdu = "smscPdu"; in testSendSMS_1_6() local
879 msg.smscPdu = smscPdu; in testSendSMS_1_6()
881 mRILUnderTest.sendSMS(smscPdu, pdu, obtainMessage()); in testSendSMS_1_6()
889 String smscPdu = "smscPdu"; in testSendSMSExpectMore() local
892 msg.smscPdu = smscPdu; in testSendSMSExpectMore()
894 mRILUnderTest.sendSMSExpectMore(smscPdu, pdu, obtainMessage()); in testSendSMSExpectMore()
908 String smscPdu = "smscPdu"; in testSendSMSExpectMore_1_6() local
[all …]