HomeSort by relevance Sort by last modified time
    Searched defs:DownloadRequest (Results 1 - 5 of 5) 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) {
  /frameworks/base/telephony/java/android/telephony/mbms/
DownloadRequest.java 46 public final class DownloadRequest implements Parcelable {
77 * Builds a new DownloadRequest.
78 * @param sourceUri the source URI for the DownloadRequest to be built. This URI should
139 * from {@link DownloadRequest#getOpaqueData()}.
160 public DownloadRequest build() {
161 return new DownloadRequest(fileServiceId, source, subscriptionId, appIntent, version);
171 private DownloadRequest(String fileServiceId,
181 public static DownloadRequest copy(DownloadRequest other) {
182 return new DownloadRequest(other)
    [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,
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/euicc/
EuiccConnector.java 201 static class DownloadRequest {
393 DownloadRequest request = new DownloadRequest();
673 DownloadRequest request = (DownloadRequest) message.obj;
    [all...]
  /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 171 milliseconds