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

  /packages/services/Mms/src/com/android/mms/service/
SendRequest.java 49 import com.google.android.mms.pdu.SendConf;
189 SendConf sendConf = null;
192 if (pdu != null && pdu instanceof SendConf) {
193 sendConf = (SendConf) pdu;
197 || sendConf == null
198 || sendConf.getResponseStatus() != PduHeaders.RESPONSE_STATUS_OK) {
206 if (sendConf != null) {
207 values.put(Telephony.Mms.RESPONSE_STATUS, sendConf.getResponseStatus())
    [all...]
  /cts/tests/tests/telephony/src/android/telephony/cts/
MmsTest.java 45 import com.google.android.mms.pdu.SendConf;
113 if (pdu != null && pdu instanceof SendConf) {
114 final SendConf sendConf = (SendConf) pdu;
115 if (sendConf.getResponseStatus() == PduHeaders.RESPONSE_STATUS_OK) {
118 Log.e(TAG, "SendConf response status=" + sendConf.getResponseStatus());
121 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);
  /cts/tests/tests/location/src/android/location/cts/
EmergencyCallMessageTest.java 29 import com.google.android.mms.pdu.SendConf;
104 if (pdu != null && pdu instanceof SendConf) {
105 final SendConf sendConf = (SendConf) pdu;
106 if (sendConf.getResponseStatus() == PduHeaders.RESPONSE_STATUS_OK) {
109 Log.e(TAG, "SendConf response status=" + sendConf.getResponseStatus());
112 Log.e(TAG, "Not a SendConf: " +
  /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();
  /development/samples/ApiDemos/src/com/example/android/apis/os/
MmsMessagingDemo.java 30 import com.example.android.mmslib.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());
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/
SmsFacade.java 51 import com.google.android.mms.pdu.SendConf;
594 if (pdu instanceof SendConf) {
595 final SendConf sendConf = (SendConf) pdu;
596 int responseCode = sendConf.getResponseStatus();
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/sms/
MmsUtils.java 67 import com.android.messaging.mmslib.pdu.SendConf;
    [all...]
  /development/samples/ApiDemos/src/com/example/android/mmslib/pdu/
PduParser.java 152 SendConf sendConf = new SendConf(mHeaders);
153 return sendConf;
    [all...]
  /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...]
  /external/robolectric/v3/runtime/
android-all-4.4_r1-robolectric-1.jar 
android-all-5.0.0_r2-robolectric-1.jar 
android-all-5.1.1_r9-robolectric-1.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.4_r1-robolectric-1.jar 
android-all-5.0.0_r2-robolectric-1.jar 
android-all-5.1.1_r9-robolectric-1.jar 
android-all-6.0.0_r1-robolectric-0.jar 
android-all-7.0.0_r1-robolectric-0.jar 
android-all-8.0.0_r4-robolectric-0.jar 
android-all-8.0.0_r4-robolectric-r1.jar 
android-all-8.1.0-robolectric-r4458339.jar 
android-all-o-preview-4-robolectric-0.jar 

Completed in 966 milliseconds