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

  /external/chromium_org/chrome/browser/resources/downloads/
downloads.js 55 // Downloads
57 * Class to hold all the information about the visible downloads.
60 function Downloads() {
62 this.node_ = $('downloads-display');
63 this.summary_ = $('downloads-summary-text');
66 // Keep track of the dates of the newest and oldest downloads so that we
79 Downloads.prototype.updated = function(download) {
85 // We get downloads in display order, so we don't have to worry about
86 // maintaining correct order - we can assume that any downloads not in
99 // change since this may touch 150 elements and Downloads.prototype.update
817 var downloads, resultsTimeout; variable
    [all...]
  /frameworks/base/core/java/com/android/server/
BootReceiver.java 32 import android.provider.Downloads;
93 Downloads.removeAllDownloadsByPackage(context, OLD_UPDATER_PACKAGE, OLD_UPDATER_CLASS);
  /frameworks/base/core/java/android/provider/
Downloads.java 29 public final class Downloads {
30 private Downloads() {}
37 * The constants URI ... STATUS are the names of columns in the downloads table.
56 * The permission to access the all the downloads in the manager.
87 * The content:// URI to access downloads owned by the caller's UID.
90 Uri.parse("content://downloads/my_downloads");
93 * The content URI for accessing all downloads across all UIDs (requires the
97 Uri.parse("content://downloads/all_downloads");
103 * The content URI for accessing publicly accessible downloads (i.e., it requires no
107 Uri.parse("content://downloads/" + PUBLICLY_ACCESSIBLE_DOWNLOADS_URI_SEGMENT)
    [all...]
  /frameworks/base/core/java/android/app/
DownloadManager.java 32 import android.provider.Downloads;
44 * The download manager is a system service that handles long-running HTTP downloads. Clients may
46 * conduct the download in the background, taking care of HTTP interactions and retrying downloads
53 * Apps that request downloads through this API should register a broadcast receiver for
55 * download in a notification or from the downloads UI.
66 public final static String COLUMN_ID = Downloads.Impl._ID;
72 public final static String COLUMN_TITLE = Downloads.Impl.COLUMN_TITLE;
78 public final static String COLUMN_DESCRIPTION = Downloads.Impl.COLUMN_DESCRIPTION;
83 public final static String COLUMN_URI = Downloads.Impl.COLUMN_URI;
115 public final static String COLUMN_STATUS = Downloads.Impl.COLUMN_STATUS
    [all...]

Completed in 759 milliseconds