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.java525 String smscPdu = "smscPdu"; in testSendSMS() local
528 msg.smscPdu = smscPdu; in testSendSMS()
530 mRILUnderTest.sendSMS(smscPdu, pdu, obtainMessage()); in testSendSMS()
538 String smscPdu = "smscPdu"; in testSendSMSExpectMore() local
541 msg.smscPdu = smscPdu; in testSendSMSExpectMore()
543 mRILUnderTest.sendSMSExpectMore(smscPdu, pdu, obtainMessage()); in testSendSMSExpectMore()
552 String smscPdu = "smscPdu"; in testWriteSmsToSim() local
557 args.smsc = smscPdu; in testWriteSmsToSim()
559 mRILUnderTest.writeSmsToSim(status, smscPdu, pdu, obtainMessage()); in testWriteSmsToSim()
728 String smscPdu = "smscPdu"; in testSendRetryImsGsmSms() local
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DRIL.java1058 private GsmSmsMessage constructGsmSendSmsRilRequest(String smscPdu, String pdu) { in constructGsmSendSmsRilRequest() argument
1060 msg.smscPdu = smscPdu == null ? "" : smscPdu; in constructGsmSendSmsRilRequest()
1066 public void sendSMS(String smscPdu, String pdu, Message result) { in sendSMS() argument
1075 GsmSmsMessage msg = constructGsmSendSmsRilRequest(smscPdu, pdu); in sendSMS()
1088 public void sendSMSExpectMore(String smscPdu, String pdu, Message result) { in sendSMSExpectMore() argument
1097 GsmSmsMessage msg = constructGsmSendSmsRilRequest(smscPdu, pdu); in sendSMSExpectMore()
3053 public void sendImsGsmSms(String smscPdu, String pdu, int retry, int messageRef, in sendImsGsmSms() argument
3068 GsmSmsMessage gsmMsg = constructGsmSendSmsRilRequest(smscPdu, pdu); in sendImsGsmSms()