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/Email/src/com/android/email/service/
AttachmentService.java 142 // Keeps tracks of downloads in progress based on an attachment ID to DownloadRequest mapping.
143 final ConcurrentHashMap<Long, DownloadRequest> mDownloadsInProgress =
144 new ConcurrentHashMap<Long, DownloadRequest>();
167 static class DownloadRequest {
190 DownloadRequest(final int attPriority, final long attId) {
199 private DownloadRequest(final Context context, final Attachment attachment) {
212 private DownloadRequest(final DownloadRequest orig, final long newTime) {
237 if (!(object instanceof DownloadRequest)) return false;
238 final DownloadRequest req = (DownloadRequest)object
    [all...]
  /external/chromium_org/chrome/browser/favicon/
favicon_handler.h 161 struct DownloadRequest {
162 DownloadRequest();
163 ~DownloadRequest();
165 DownloadRequest(const GURL& url,
268 typedef std::map<int, DownloadRequest> DownloadRequests;
favicon_handler.cc 188 FaviconHandler::DownloadRequest::DownloadRequest()
191 FaviconHandler::DownloadRequest::~DownloadRequest() {
194 FaviconHandler::DownloadRequest::DownloadRequest(
663 DownloadRequest(url, image_url, icon_type);
  /packages/services/Mms/src/com/android/mms/service/
DownloadRequest.java 50 public class DownloadRequest extends MmsRequest {
58 public DownloadRequest(RequestManager manager, long subId, String locationUrl,
114 Log.e(MmsService.TAG, "DownloadRequest.updateStatus: invalid parsed PDU");
126 Log.e(MmsService.TAG, "DownloadRequest.updateStatus: can not persist message");
145 Log.e(MmsService.TAG, "DownloadRequest.updateStatus: can not update message");
158 Log.e(MmsService.TAG, "DownloadRequest.updateStatus: can not persist message", e);
160 Log.e(MmsService.TAG, "DownloadRequest.updateStatus: can not update message", e);
162 Log.e(MmsService.TAG, "DownloadRequest.updateStatus: can not parse response", e);
MmsService.java 147 final DownloadRequest request = new DownloadRequest(MmsService.this, subId,
    [all...]
  /external/chromium_org/chrome/browser/history/
history_service.h 601 template<typename Info, typename Callback> friend class DownloadRequest;
    [all...]

Completed in 106 milliseconds