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

  /frameworks/base/services/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 30 import android.provider.Downloads;
42 * The download manager is a system service that handles long-running HTTP downloads. Clients may
44 * conduct the download in the background, taking care of HTTP interactions and retrying downloads
51 * Apps that request downloads through this API should register a broadcast receiver for
53 * download in a notification or from the downloads UI.
64 public final static String COLUMN_ID = Downloads.Impl._ID;
70 public final static String COLUMN_TITLE = Downloads.Impl.COLUMN_TITLE;
76 public final static String COLUMN_DESCRIPTION = Downloads.Impl.COLUMN_DESCRIPTION;
81 public final static String COLUMN_URI = Downloads.Impl.COLUMN_URI;
113 public final static String COLUMN_STATUS = Downloads.Impl.COLUMN_STATUS
    [all...]

Completed in 361 milliseconds