HomeSort by relevance Sort by last modified time
    Searched refs:SendConf (Results 1 - 5 of 5) sorted by null

  /frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
SendConf.java 22 public class SendConf extends GenericPdu {
31 public SendConf() throws InvalidHeaderValueException {
41 SendConf(PduHeaders headers) {
PduParser.java 152 SendConf sendConf = new SendConf(mHeaders);
153 return sendConf;
    [all...]
  /packages/services/Mms/src/com/android/mms/service/
SendRequest.java 47 import com.google.android.mms.pdu.SendConf;
136 SendConf sendConf = null;
139 if (pdu != null && pdu instanceof SendConf) {
140 sendConf = (SendConf) pdu;
144 || sendConf == null
145 || sendConf.getResponseStatus() != PduHeaders.RESPONSE_STATUS_OK) {
153 if (sendConf != null) {
154 values.put(Telephony.Mms.RESPONSE_STATUS, sendConf.getResponseStatus())
    [all...]
  /packages/apps/Mms/src/com/android/mms/transaction/
SendTransaction.java 39 import com.google.android.mms.pdu.SendConf;
122 SendConf conf = (SendConf) new PduParser(
  /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());

Completed in 472 milliseconds