OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Downloads
(Results
1 - 5
of
5
) 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
769
var
downloads
, resultsTimeout;
variable
[
all
...]
/external/chromium_org/chrome/test/pyautolib/
download_info.py
5
"""DownloadInfo: python representation for
downloads
visible to Chrome.
14
print info.
Downloads
()
15
self.assertEqual(info.
Downloads
()[0]['file_name'], 'packge.zip')
17
See more tests in chrome/test/functional/
downloads
.py.
28
"""Represent info about
Downloads
.
40
{'
downloads
': [{'url': 'http://blah/a_file.zip',
54
def
Downloads
(self):
55
"""Info about all
downloads
.
57
This includes
downloads
in all states (COMPLETE, IN_PROGRESS, ...).
62
return self.downloadsdict.get('
downloads
', [])
[
all
...]
/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
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 59 milliseconds