Home
last modified time | relevance | path

Searched refs:DownloadToFile (Results 1 – 3 of 3) sorted by relevance

/device/google/cuttlefish/host/commands/fetcher/
Dcurl_wrapper.h34 bool DownloadToFile(const std::string& url, const std::string& path);
35 bool DownloadToFile(const std::string& url, const std::string& path,
Dcurl_wrapper.cc66 bool CurlWrapper::DownloadToFile(const std::string& url, const std::string& path) { in DownloadToFile() function in cuttlefish::CurlWrapper
67 return CurlWrapper::DownloadToFile(url, path, {}); in DownloadToFile()
70 bool CurlWrapper::DownloadToFile(const std::string& url, const std::string& path, in DownloadToFile() function in cuttlefish::CurlWrapper
Dbuild_api.cc168 return curl.DownloadToFile(url, path, Headers()); in ArtifactToFile()