/external/c-ares/ |
ares__close_sockets.c | 29 struct send_request *sendreq; local 35 sendreq = server->qhead; 36 server->qhead = sendreq->next; 37 if (sendreq->data_storage != NULL) 38 free(sendreq->data_storage); 39 free(sendreq);
|
ares_process.c | 212 struct send_request *sendreq; local 251 for (sendreq = server->qhead; sendreq; sendreq = sendreq->next) 260 for (sendreq = server->qhead; sendreq; sendreq = sendreq->next) 262 vec[n].iov_base = (char *) sendreq->data 301 struct send_request *sendreq; local 727 struct send_request *sendreq; local 1218 struct send_request *sendreq; local [all...] |
/packages/services/Mms/src/com/android/mms/service/ |
SendRequest.java | 50 import com.google.android.mms.pdu.SendReq; 125 SendReq sendReq = (SendReq) parsedPdu; 126 for (EncodedStringValue encodedStringValue : sendReq.getTo()) { 172 if (!(pdu instanceof SendReq)) { 173 LogUtil.d(requestId, "persistIfRequired: not SendReq"); 244 if (!(pdu instanceof SendReq)) { 245 LogUtil.i(requestId, "updateDestinationAddress: not SendReq"); 249 boolean isUpdated = updateDestinationAddressPerType((SendReq)pdu, PduHeaders.TO) [all...] |
MmsService.java | 53 import com.google.android.mms.pdu.SendReq; 540 if (pdu instanceof SendReq) { 712 if (!(pdu instanceof SendReq)) { [all...] |
/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/ |
SendReq.java | 24 public class SendReq extends MultimediaMessagePdu { 25 private static final String TAG = "SendReq"; 27 public SendReq() { 60 public SendReq(byte[] contentType, 77 SendReq(PduHeaders headers) { 87 SendReq(PduHeaders headers, PduBody body) {
|
PduPersister.java | 636 pdu = new SendReq(headers, body); [all...] |
PduParser.java | 146 SendReq sendReq = new SendReq(mHeaders, mBody); 147 return sendReq; [all...] |
PduComposer.java | 861 PduBody body = ((SendReq) mPdu).getBody(); [all...] |
/packages/apps/Messaging/src/android/support/v7/mms/pdu/ |
SendReq.java | 22 public class SendReq extends MultimediaMessagePdu { 23 private static final String TAG = "SendReq"; 25 public SendReq() { 58 public SendReq(byte[] contentType, 75 SendReq(PduHeaders headers) { 85 SendReq(PduHeaders headers, PduBody body) {
|
PduParser.java | 143 SendReq sendReq = new SendReq(mHeaders, mBody); 144 return sendReq; [all...] |
/packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/ |
SendReq.java | 24 public class SendReq extends MultimediaMessagePdu { 25 private static final String TAG = "SendReq"; 27 public SendReq() { 61 public SendReq(byte[] contentType, 78 SendReq(PduHeaders headers) { 88 SendReq(PduHeaders headers, PduBody body) {
|
PduPersister.java | 672 return new SendReq(headers, body); [all...] |
PduParser.java | 165 SendReq sendReq = new SendReq(mHeaders, mBody); 166 return sendReq; [all...] |
PduComposer.java | 924 final PduBody body = ((SendReq) mPdu).getBody(); [all...] |
/packages/apps/Messaging/src/com/android/messaging/sms/ |
MmsSender.java | 41 import com.android.messaging.mmslib.pdu.SendReq; 64 * @param sendReq The SendReq PDU of the message 68 final SendReq sendReq, final Bundle sentIntentExras) throws MmsFailureException { 73 sendReq,
|
MmsUtils.java | 68 import com.android.messaging.mmslib.pdu.SendReq; [all...] |
/cts/tests/tests/telephony/src/android/telephony/cts/ |
MmsTest.java | 46 import com.google.android.mms.pdu.SendReq; 235 final SendReq req = new SendReq();
|
/development/samples/ApiDemos/src/com/example/android/apis/os/ |
MmsMessagingDemo.java | 31 import com.google.android.mms.pdu.SendReq; 335 final SendReq req = new SendReq();
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/ |
SmsFacade.java | 31 import com.google.android.mms.pdu.SendReq; [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 | |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
WapPushOverSms.java | 403 // The associated SendReq isn't found, therefore skip
|