/external/chromium_org/chrome/browser/ui/webui/ |
identity_internals_ui_browsertest.js | 8 * Test C++ fixture for downloads WebUI testing. 15 * Base fixture for Downloads WebUI testing. 25 * Browse to the downloads page & call our preLoad().
|
downloads_dom_handler.cc | 34 #include "chrome/browser/extensions/api/downloads/downloads_api.h" 59 // Maximum number of downloads to show. TODO(glen): Remove this and instead 60 // stuff the downloads down the pipe slowly. 118 // progress. The difference currently only matters to Drive downloads and 119 // those don't show up on the downloads page, but should. 235 // Filters out extension downloads and downloads that don't have a filename yet. 349 // at all downloads, and we do not tell it that |download_item| is being 455 // If this is an incognito downloads page, clear All should clear main 461 // downloads.js always clears the display and relies on HandleClearAll t [all...] |
/packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/ |
AbstractDownloadProviderFunctionalTest.java | 17 package com.android.providers.downloads; 29 import android.provider.Downloads; 53 private static final String PROVIDER_AUTHORITY = "downloads"; 188 Cursor cursor = mResolver.query(Downloads.Impl.ALL_DOWNLOADS_CONTENT_URI, 198 * Remove any downloaded files and delete any lingering downloads. 204 String[] columns = new String[] {Downloads.Impl._DATA}; 205 Cursor cursor = mResolver.query(Downloads.Impl.CONTENT_URI, columns, null, null, null); 216 mResolver.delete(Downloads.Impl.CONTENT_URI, null, null);
|
AbstractPublicApiTest.java | 17 package com.android.providers.downloads;
|
DownloadProviderFunctionalTest.java | 17 package com.android.providers.downloads; 28 import android.provider.Downloads; 40 * This test exercises the entire download manager working together -- it requests downloads through 43 * device to serve downloads. 58 assertEquals(Downloads.Impl.STATUS_PENDING, getDownloadStatus(downloadUri)); 61 runUntilStatus(downloadUri, Downloads.Impl.STATUS_SUCCESS); 74 updateDownload(downloadUri, Downloads.Impl.COLUMN_DESTINATION, 75 Integer.toString(Downloads.Impl.DESTINATION_CACHE_PARTITION)); 76 runUntilStatus(downloadUri, Downloads.Impl.STATUS_SUCCESS); 91 runUntilStatus(downloadUri, Downloads.Impl.STATUS_SUCCESS) [all...] |
PublicApiFunctionalTest.java | 17 package com.android.providers.downloads; 47 import android.provider.Downloads; 252 mSystemFacade.incrementTimeMillis(1); // ensure downloads are correctly ordered by time 322 private void checkAndCloseCursor(Cursor cursor, Download... downloads) { 325 assertEquals(downloads.length, cursor.getCount()); 327 for (Download download : downloads) { 543 intent.setData(Uri.parse(Downloads.Impl.CONTENT_URI + "/" + download.mId)); [all...] |
/build/tools/droiddoc/templates-sdk/ |
sample.cs | 20 | <a href="<?cs var:toroot ?>downloads/samples/<?cs var:projectDir ?>.zip"
|
sampleindex.cs | 23 | <a href="<?cs var:toroot ?>downloads/samples/<?cs var:projectDir ?>.zip"
|
docpage.cs | 100 | <a href="<?cs var:toroot ?>downloads/samples/<?cs var:projectDir ?>.zip">Download</a>
|
/build/tools/droiddoc/templates-sdk-dyn/ |
sample.cs | 20 | <a href="<?cs var:toroot ?>downloads/samples/<?cs var:projectDir ?>.zip"
|
sampleindex.cs | 23 | <a href="<?cs var:toroot ?>downloads/samples/<?cs var:projectDir ?>.zip"
|
docpage.cs | 100 | <a href="<?cs var:toroot ?>downloads/samples/<?cs var:projectDir ?>.zip">Download</a>
|
/external/chromium_org/content/browser/download/ |
download_manager_impl.cc | 336 // If there are in-progress downloads, cancel them. This also goes for 337 // dangerous downloads which will remain in history if they aren't explicitly 435 // For interrupted downloads, Start() will transition the state to 437 // For new downloads, we notify here, rather than earlier, so that 698 void DownloadManagerImpl::GetAllDownloads(DownloadVector* downloads) { 701 downloads->push_back(it->second);
|
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
Helpers.java | 17 package com.android.providers.downloads; 19 import static com.android.providers.downloads.Constants.TAG; 26 import android.provider.Downloads; 82 if (destination == Downloads.Impl.DESTINATION_FILE_URI) { 111 if (destination == Downloads.Impl.DESTINATION_FILE_URI) { 215 // The VFAT file system is assumed as target for downloads. 339 * prevents us from opening files that aren't actually downloads. 378 case Downloads.Impl.DESTINATION_CACHE_PARTITION: 379 case Downloads.Impl.DESTINATION_CACHE_PARTITION_PURGEABLE: 380 case Downloads.Impl.DESTINATION_CACHE_PARTITION_NOROAMING [all...] |
DownloadThread.java | 17 package com.android.providers.downloads; 19 import static android.provider.Downloads.Impl.STATUS_BAD_REQUEST; 20 import static android.provider.Downloads.Impl.STATUS_CANNOT_RESUME; 21 import static android.provider.Downloads.Impl.STATUS_FILE_ERROR; 22 import static android.provider.Downloads.Impl.STATUS_HTTP_DATA_ERROR; 23 import static android.provider.Downloads.Impl.STATUS_SUCCESS; 24 import static android.provider.Downloads.Impl.STATUS_TOO_MANY_REDIRECTS; 25 import static android.provider.Downloads.Impl.STATUS_UNHANDLED_HTTP_CODE; 26 import static android.provider.Downloads.Impl.STATUS_UNKNOWN_ERROR; 27 import static android.provider.Downloads.Impl.STATUS_WAITING_FOR_NETWORK [all...] |
DownloadStorageProvider.java | 17 package com.android.providers.downloads;
|
DownloadInfo.java | 17 package com.android.providers.downloads; 31 import android.provider.Downloads; 32 import android.provider.Downloads.Impl; 74 info.mId = getLong(Downloads.Impl._ID); 75 info.mUri = getString(Downloads.Impl.COLUMN_URI); 76 info.mNoIntegrity = getInt(Downloads.Impl.COLUMN_NO_INTEGRITY) == 1; 77 info.mHint = getString(Downloads.Impl.COLUMN_FILE_NAME_HINT); 78 info.mFileName = getString(Downloads.Impl._DATA); 79 info.mMimeType = Intent.normalizeMimeType(getString(Downloads.Impl.COLUMN_MIME_TYPE)); 80 info.mDestination = getInt(Downloads.Impl.COLUMN_DESTINATION) [all...] |
/external/chromium_org/chrome/browser/chromeos/file_manager/ |
volume_manager.cc | 47 // Registers |path| as the "Downloads" folder to the FileSystem API backend. 50 // Although we show only profile's own "Downloads" folder in Files.app, 59 // In some tests we want to override existing Downloads mount point, so we 67 // Finds the path register as the "Downloads" folder to FileSystem API backend. 101 return "downloads"; 280 // Note: Preferences related to downloads are handled in download_prefs.cc. 292 // Register 'Downloads' folder for the profile to the file system. 293 const base::FilePath downloads = local 295 const bool success = RegisterDownloadsMountPoint(profile_, downloads); 299 CreateDownloadsVolumeInfo(downloads), [all...] |
/external/chromium_org/chrome/tools/ |
webforms_aggregator.py | 6 """Downloads web pages with fillable forms after parsing through a set of links. 263 """Downloads the self._url page. 297 Downloads the originally-specified site url, parses it and gets the links. 377 """Performs concurrent downloads using a CurlMulti object. 380 curl_multi_object: a curl object that downloads multiple pages 397 """Downloads many pages concurrently using a CurlMulti Object. 517 retriever: a temporary object that downloads a specific page, parses the
|
/external/chromium_org/chrome/renderer/resources/extensions/ |
web_request_internal_custom_bindings.js | 71 // not play well with event pages. See downloads.onDeterminingFilename and
|
/frameworks/base/docs/html/design/ |
design_toc.cs | 101 <div class="nav-section-header empty"><a href="<?cs var:toroot ?>design/downloads/index.html">Downloads</a></div>
|
/frameworks/base/docs/html/training/ |
training_toc.cs | 531 <a href="<?cs var:toroot ?>training/efficient-downloads/index.html" 533 "How to minimize your app's impact on the battery when performing downloads 538 <li><a href="<?cs var:toroot ?>training/efficient-downloads/efficient-network-access.html"> 539 Optimizing Downloads for Efficient Network Access 542 <li><a href="<?cs var:toroot ?>training/efficient-downloads/regular_updates.html"> 546 <li><a href="<?cs var:toroot ?>training/efficient-downloads/redundant_redundant.html"> 547 Redundant Downloads are Redundant 550 <li><a href="<?cs var:toroot ?>training/efficient-downloads/connectivity_patterns.html"> [all...] |
/build/tools/droiddoc/templates-sdk-dyn/components/ |
masthead.cs | 65 <li><a href="<?cs var:toroot ?>design/downloads/index.html">Downloads</a></li>
|
/prebuilts/eclipse/maven/apache-maven-3.2.1/lib/ |
maven-embedder-3.2.1.jar | |
/build/tools/droiddoc/templates-sdk/components/ |
masthead.cs | 74 <li><a href="<?cs var:toroot ?>design/downloads/index.html">Downloads</a></li>
|