Home
last modified time | relevance | path

Searched refs:downloader (Results 1 – 6 of 6) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/build/
DFileDownloadCache.java306 public void fetchRemoteFile(IFileDownloader downloader, String remoteFilePath, File destFile) in fetchRemoteFile() argument
308 internalfetchRemoteFile(downloader, remoteFilePath, destFile); in fetchRemoteFile()
322 public File fetchRemoteFile(IFileDownloader downloader, String remoteFilePath) in fetchRemoteFile() argument
324 return internalfetchRemoteFile(downloader, remoteFilePath, null); in fetchRemoteFile()
328 IFileDownloader downloader, String remotePath, File destFile) in internalfetchRemoteFile() argument
355 || !downloader.isFresh(cachedFile, remotePath))) { in internalfetchRemoteFile()
370 downloadFile(downloader, remotePath, cachedFile); in internalfetchRemoteFile()
396 private void downloadFile(IFileDownloader downloader, String remotePath, File cachedFile) in downloadFile() argument
399 downloader.downloadFile(remotePath, cachedFile); in downloadFile()
/tools/tradefederation/core/src/com/android/tradefed/util/
DRemoteZip.java54 IFileDownloader downloader, in RemoteZip() argument
58 mDownloader = downloader; in RemoteZip()
71 public RemoteZip(String remoteFilePath, long fileSize, IFileDownloader downloader) { in RemoteZip() argument
72 this(remoteFilePath, fileSize, downloader, false); in RemoteZip()
/tools/tradefederation/core/src/com/android/tradefed/config/remote/
DHttpRemoteFileResolver.java45 IHttpHelper downloader = getDownloader(); in resolveRemoteFiles() local
52 downloader.doGet(path, new FileOutputStream(downloadedFile)); in resolveRemoteFiles()
/tools/tradefederation/core/src/com/android/tradefed/cluster/
DClusterBuildProvider.java56 final TestResourceDownloader downloader = new TestResourceDownloader(mRootDir); in getBuild() local
59 final File file = downloader.download(resource); in getBuild()
/tools/acloud/internal/lib/
Dandroid_build_client.py93 downloader = apiclient.http.MediaIoBaseDownload(
97 _, done = downloader.next_chunk()
/tools/tradefederation/core/tests/src/com/android/tradefed/build/
DFileDownloadCacheFuncTest.java326 private Thread createDownloadThread(IFileDownloader downloader, String remotePath) { in createDownloadThread() argument
331 mReturnedFiles.add(mCache.fetchRemoteFile(downloader, remotePath)); in createDownloadThread()