Home
last modified time | relevance | path

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

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DRILTest.java720 String smscPdu = "smscPdu"; in testSendSMS() local
723 msg.smscPdu = smscPdu; in testSendSMS()
725 mRILUnderTest.sendSMS(smscPdu, pdu, obtainMessage()); in testSendSMS()
733 String smscPdu = "smscPdu"; in testSendSMSExpectMore() local
736 msg.smscPdu = smscPdu; in testSendSMSExpectMore()
738 mRILUnderTest.sendSMSExpectMore(smscPdu, pdu, obtainMessage()); in testSendSMSExpectMore()
747 String smscPdu = "smscPdu"; in testWriteSmsToSim() local
752 args.smsc = smscPdu; in testWriteSmsToSim()
754 mRILUnderTest.writeSmsToSim(status, smscPdu, pdu, obtainMessage()); in testWriteSmsToSim()
924 String smscPdu = "smscPdu"; in testSendRetryImsGsmSms() local
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DRIL.java1628 private GsmSmsMessage constructGsmSendSmsRilRequest(String smscPdu, String pdu) { in constructGsmSendSmsRilRequest() argument
1630 msg.smscPdu = smscPdu == null ? "" : smscPdu; in constructGsmSendSmsRilRequest()
1636 public void sendSMS(String smscPdu, String pdu, Message result) { in sendSMS() argument
1645 GsmSmsMessage msg = constructGsmSendSmsRilRequest(smscPdu, pdu); in sendSMS()
1658 public void sendSMSExpectMore(String smscPdu, String pdu, Message result) { in sendSMSExpectMore() argument
1667 GsmSmsMessage msg = constructGsmSendSmsRilRequest(smscPdu, pdu); in sendSMSExpectMore()
4062 public void sendImsGsmSms(String smscPdu, String pdu, int retry, int messageRef, in sendImsGsmSms() argument
4077 GsmSmsMessage gsmMsg = constructGsmSendSmsRilRequest(smscPdu, pdu); in sendImsGsmSms()