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

  /packages/apps/Email/tests/src/com/android/email/service/
AttachmentServiceTests.java 40 final AttachmentService.DownloadRequest dr =
41 new AttachmentService.DownloadRequest(AttachmentService.PRIORITY_FOREGROUND, 1);
42 final AttachmentService.DownloadRequest dr2 =
43 new AttachmentService.DownloadRequest(AttachmentService.PRIORITY_FOREGROUND, 2);
56 final AttachmentService.DownloadRequest dr =
57 new AttachmentService.DownloadRequest(AttachmentService.PRIORITY_FOREGROUND, 1);
79 final AttachmentService.DownloadRequest dr =
80 new AttachmentService.DownloadRequest(AttachmentService.PRIORITY_FOREGROUND, 1);
95 final AttachmentService.DownloadRequest dr =
96 new AttachmentService.DownloadRequest(AttachmentService.PRIORITY_FOREGROUND, 1)
    [all...]
  /packages/apps/Messaging/src/android/support/v7/mms/
DownloadRequest.java 39 class DownloadRequest extends MmsRequest {
41 DownloadRequest(final String locationUrl, final Uri pduUri,
118 public static final Parcelable.Creator<DownloadRequest> CREATOR
119 = new Parcelable.Creator<DownloadRequest>() {
120 public DownloadRequest createFromParcel(Parcel in) {
121 return new DownloadRequest(in);
124 public DownloadRequest[] newArray(int size) {
125 return new DownloadRequest[size];
129 private DownloadRequest(Parcel in) {
MmsManager.java 167 new DownloadRequest(locationUrl, contentUri, downloadedIntent));
  /packages/apps/Email/provider_src/com/android/email/service/
AttachmentService.java 144 // Keeps tracks of downloads in progress based on an attachment ID to DownloadRequest mapping.
145 final ConcurrentHashMap<Long, DownloadRequest> mDownloadsInProgress =
146 new ConcurrentHashMap<Long, DownloadRequest>();
169 static class DownloadRequest {
192 DownloadRequest(final int attPriority, final long attId) {
201 private DownloadRequest(final Context context, final Attachment attachment) {
214 private DownloadRequest(final DownloadRequest orig, final long newTime) {
239 if (!(object instanceof DownloadRequest)) return false;
240 final DownloadRequest req = (DownloadRequest)object
    [all...]
  /packages/services/Mms/src/com/android/mms/service/
DownloadRequest.java 53 public class DownloadRequest extends MmsRequest {
61 public DownloadRequest(RequestManager manager, int subId, String locationUrl,
MmsRequest.java 176 networkManager.releaseNetwork(requestId, this instanceof DownloadRequest);
MmsService.java 199 final DownloadRequest request = new DownloadRequest(MmsService.this, subId, locationUrl,
    [all...]

Completed in 590 milliseconds