HomeSort by relevance Sort by last modified time
    Searched defs:sendConf (Results 1 - 8 of 8) sorted by null

  /packages/services/Mms/src/com/android/mms/service/
SendRequest.java 42 import com.google.android.mms.pdu.SendConf;
134 SendConf sendConf = null;
137 if (pdu != null && pdu instanceof SendConf) {
138 sendConf = (SendConf) pdu;
142 || sendConf == null
143 || sendConf.getResponseStatus() != PduHeaders.RESPONSE_STATUS_OK) {
151 if (sendConf != null) {
152 values.put(Telephony.Mms.RESPONSE_STATUS, sendConf.getResponseStatus())
    [all...]
  /packages/apps/Messaging/src/android/support/v7/mms/
MmsRequest.java 31 import android.support.v7.mms.pdu.SendConf;
234 if (pdu != null && pdu instanceof SendConf) {
235 final SendConf sendConf = (SendConf) pdu;
236 final int responseStatus = sendConf.getResponseStatus();
  /cts/tests/tests/telephony/src/android/telephony/cts/
MmsTest.java 44 import com.google.android.mms.pdu.SendConf;
111 if (pdu != null && pdu instanceof SendConf) {
112 final SendConf sendConf = (SendConf) pdu;
113 if (sendConf.getResponseStatus() == PduHeaders.RESPONSE_STATUS_OK) {
116 Log.e(TAG, "SendConf response status=" + sendConf.getResponseStatus());
119 Log.e(TAG, "Not a SendConf: " +
  /packages/apps/Messaging/src/com/android/messaging/datamodel/action/
ProcessSentMessageAction.java 37 import com.android.messaging.mmslib.pdu.SendConf;
159 final SendConf sendConf = MmsSender.parseSendConf(response, subId);
160 if (sendConf != null) {
162 MmsUtils.updateSentMmsMessageStatus(context, messageUri, sendConf);
  /development/samples/ApiDemos/src/com/example/android/apis/os/
MmsMessagingDemo.java 30 import com.google.android.mms.pdu.SendConf;
243 if (pdu instanceof SendConf) {
244 final SendConf sendConf = (SendConf) pdu;
245 if (sendConf.getResponseStatus() == PduHeaders.RESPONSE_STATUS_OK) {
248 Log.e(TAG, "MMS sent, error=" + sendConf.getResponseStatus());
  /frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
PduParser.java 152 SendConf sendConf = new SendConf(mHeaders);
153 return sendConf;
    [all...]
  /packages/apps/Messaging/src/android/support/v7/mms/pdu/
PduParser.java 149 SendConf sendConf = new SendConf(mHeaders);
150 return sendConf;
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/
PduParser.java 171 SendConf sendConf = new SendConf(mHeaders);
172 return sendConf;
    [all...]

Completed in 2949 milliseconds