Home
last modified time | relevance | path

Searched refs:SendConf (Results 1 – 11 of 11) sorted by relevance

/aosp12/packages/apps/Messaging/src/android/support/v7/mms/pdu/
H A DSendConf.java20 public class SendConf extends GenericPdu { class
29 public SendConf() throws InvalidHeaderValueException { in SendConf() method in SendConf
39 SendConf(PduHeaders headers) { in SendConf() method in SendConf
H A DPduParser.java149 SendConf sendConf = new SendConf(mHeaders); in parse()
/aosp12/packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/
H A DSendConf.java22 public class SendConf extends GenericPdu { class
31 public SendConf() throws InvalidHeaderValueException { in SendConf() method in SendConf
41 SendConf(PduHeaders headers) { in SendConf() method in SendConf
H A DPduParser.java171 SendConf sendConf = new SendConf(mHeaders); in parse()
/aosp12/frameworks/base/telephony/common/com/google/android/mms/pdu/
H A DSendConf.java24 public class SendConf extends GenericPdu { class
34 public SendConf() throws InvalidHeaderValueException { in SendConf() method in SendConf
45 SendConf(PduHeaders headers) { in SendConf() method in SendConf
H A DPduParser.java155 SendConf sendConf = new SendConf(mHeaders); in parse()
/aosp12/packages/apps/Messaging/src/com/android/messaging/sms/
H A DMmsSender.java40 import com.android.messaging.mmslib.pdu.SendConf;
220 public static SendConf parseSendConf(byte[] response, int subId) { in parseSendConf()
225 if (respPdu instanceof SendConf) { in parseSendConf()
226 return (SendConf) respPdu; in parseSendConf()
H A DMmsUtils.java65 import com.android.messaging.mmslib.pdu.SendConf;
1792 public SendConf mSendConf;
1794 public SendReqResp(final SendReq sendReq, final SendConf sendConf) { in SendReqResp()
2083 final Uri messageUri, final SendConf sendConf) { in updateSentMmsMessageStatus()
/aosp12/packages/apps/Messaging/src/android/support/v7/mms/
H A DMmsRequest.java31 import androidx.appcompat.mms.pdu.SendConf;
234 if (pdu != null && pdu instanceof SendConf) { in isWrongApnResponse()
235 final SendConf sendConf = (SendConf) pdu; in isWrongApnResponse()
/aosp12/packages/services/Mms/src/com/android/mms/service/
H A DSendRequest.java46 import com.google.android.mms.pdu.SendConf;
216 SendConf sendConf = null; in persistIfRequired()
219 if (pdu != null && pdu instanceof SendConf) { in persistIfRequired()
220 sendConf = (SendConf) pdu; in persistIfRequired()
/aosp12/packages/apps/Messaging/src/com/android/messaging/datamodel/action/
H A DProcessSentMessageAction.java37 import com.android.messaging.mmslib.pdu.SendConf;
159 final SendConf sendConf = MmsSender.parseSendConf(response, subId); in executeAction()