Searched refs:smscPdu (Results 1 – 2 of 2) sorted by relevance
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | RILTest.java | 583 String smscPdu = "smscPdu"; in testSendSMS() local 586 msg.smscPdu = smscPdu; in testSendSMS() 588 mRILUnderTest.sendSMS(smscPdu, pdu, obtainMessage()); in testSendSMS() 596 String smscPdu = "smscPdu"; in testSendSMSExpectMore() local 599 msg.smscPdu = smscPdu; in testSendSMSExpectMore() 601 mRILUnderTest.sendSMSExpectMore(smscPdu, pdu, obtainMessage()); in testSendSMSExpectMore() 610 String smscPdu = "smscPdu"; in testWriteSmsToSim() local 615 args.smsc = smscPdu; in testWriteSmsToSim() 617 mRILUnderTest.writeSmsToSim(status, smscPdu, pdu, obtainMessage()); in testWriteSmsToSim() 787 String smscPdu = "smscPdu"; in testSendRetryImsGsmSms() local [all …]
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | RIL.java | 1315 private GsmSmsMessage constructGsmSendSmsRilRequest(String smscPdu, String pdu) { in constructGsmSendSmsRilRequest() argument 1317 msg.smscPdu = smscPdu == null ? "" : smscPdu; in constructGsmSendSmsRilRequest() 1323 public void sendSMS(String smscPdu, String pdu, Message result) { in sendSMS() argument 1332 GsmSmsMessage msg = constructGsmSendSmsRilRequest(smscPdu, pdu); in sendSMS() 1345 public void sendSMSExpectMore(String smscPdu, String pdu, Message result) { in sendSMSExpectMore() argument 1354 GsmSmsMessage msg = constructGsmSendSmsRilRequest(smscPdu, pdu); in sendSMSExpectMore() 3533 public void sendImsGsmSms(String smscPdu, String pdu, int retry, int messageRef, in sendImsGsmSms() argument 3548 GsmSmsMessage gsmMsg = constructGsmSendSmsRilRequest(smscPdu, pdu); in sendImsGsmSms()
|