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

  /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) {
  /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,
  /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...]

Completed in 95 milliseconds