Searched refs:mDownloads (Results 1 - 2 of 2) sorted by relevance

/packages/providers/DownloadProvider/src/com/android/providers/downloads/
H A DDownloadService.java76 @GuardedBy("mDownloads")
77 private Map<Long, DownloadInfo> mDownloads = Maps.newHashMap(); field in class:DownloadService
298 synchronized (mDownloads) {
303 Set<Long> idsNoLongerInDatabase = new HashSet<Long>(mDownloads.keySet());
321 DownloadInfo info = mDownloads.get(id);
353 for (DownloadInfo info : mDownloads.values()) {
361 mNotifier.updateWith(mDownloads.values());
370 for (DownloadInfo info : mDownloads.values()) {
439 mDownloads.put(info.mId, info);
468 DownloadInfo info = mDownloads
[all...]
/packages/apps/VideoEditor/src/com/android/videoeditor/service/
H A DVideoEditorProject.java69 private final List<Download> mDownloads; field in class:VideoEditorProject
158 mDownloads = downloads;
160 mDownloads = new ArrayList<Download>();
1134 mDownloads.add(new Download(mediaUri, mimeType, filename, System.currentTimeMillis()));
1144 final int count = mDownloads.size();
1146 final Download download = mDownloads.get(i);
1154 mDownloads.remove(i);
1165 return mDownloads;
1266 for (Download download : mDownloads) {

Completed in 214 milliseconds