Searched defs:downloads (Results 26 - 32 of 32) sorted by relevance

12

/packages/providers/DownloadProvider/src/com/android/providers/downloads/
H A DDownloadService.java17 package com.android.providers.downloads;
20 import static com.android.providers.downloads.Constants.TAG;
69 * Performs background downloads as requested by applications that use
71 * service, and it will continue running until no downloads are being actively
72 * processed. It may schedule alarms to resume downloads in future.
104 * The Service's view of the list of downloads, mapping download IDs to the corresponding info
106 * downloads based on this data, so that it can deal with situation where the data in the
118 // Create a bounded thread pool for executing downloads; it creates
408 // Clean up stale downloads that disappeared
H A DDownloadStorageProvider.java17 package com.android.providers.downloads;
H A DDownloadThread.java17 package com.android.providers.downloads;
30 import static com.android.providers.downloads.Constants.TAG;
62 import com.android.providers.downloads.DownloadInfo.NetworkState;
775 // easily resume partial downloads.
H A DHelpers.java17 package com.android.providers.downloads;
19 import static com.android.providers.downloads.Constants.TAG;
215 // The VFAT file system is assumed as target for downloads.
339 * prevents us from opening files that aren't actually downloads.
399 throw new IOException("unable to create external downloads directory");
H A DDownloadInfo.java17 package com.android.providers.downloads;
621 // downloads; this is safe default for now.
H A DDownloadProvider.java17 package com.android.providers.downloads;
73 private static final String DB_NAME = "downloads.db";
77 private static final String DB_TABLE = "downloads";
86 /** URI matcher constant for the URI of all downloads belonging to the calling UID */
90 /** URI matcher constant for the URI of all downloads in the system */
102 sURIMatcher.addURI("downloads", "my_downloads", MY_DOWNLOADS);
103 sURIMatcher.addURI("downloads", "my_downloads/#", MY_DOWNLOADS_ID);
104 sURIMatcher.addURI("downloads", "all_downloads", ALL_DOWNLOADS);
105 sURIMatcher.addURI("downloads", "all_downloads/#", ALL_DOWNLOADS_ID);
106 sURIMatcher.addURI("downloads",
[all...]
/packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
H A DAbstractDownloadProviderFunctionalTest.java17 package com.android.providers.downloads;
53 private static final String PROVIDER_AUTHORITY = "downloads";
198 * Remove any downloaded files and delete any lingering downloads.

Completed in 154 milliseconds

12