/packages/apps/Messaging/src/android/support/v7/mms/pdu/ |
SendConf.java | 20 public class SendConf extends GenericPdu { 29 public SendConf() throws InvalidHeaderValueException { 39 SendConf(PduHeaders headers) {
|
PduParser.java | 149 SendConf sendConf = new SendConf(mHeaders); 150 return sendConf; [all...] |
/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/apps/Messaging/src/com/android/messaging/mmslib/pdu/ |
SendConf.java | 22 public class SendConf extends GenericPdu { 31 public SendConf() throws InvalidHeaderValueException { 41 SendConf(PduHeaders headers) {
|
PduParser.java | 171 SendConf sendConf = new SendConf(mHeaders); 172 return sendConf; [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/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();
|
/packages/apps/Messaging/src/com/android/messaging/sms/ |
MmsSender.java | 40 import com.android.messaging.mmslib.pdu.SendConf; 220 public static SendConf parseSendConf(byte[] response, int subId) { 225 if (respPdu instanceof SendConf) { 226 return (SendConf) respPdu; 228 LogUtil.e(TAG, "MmsSender: send response not SendConf");
|
MmsUtils.java | 67 import com.android.messaging.mmslib.pdu.SendConf; [all...] |
/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...] |
/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());
|
/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);
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/ |
SmsFacade.java | 30 import com.google.android.mms.pdu.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 | |