Home
last modified time | relevance | path

Searched refs:SupportedUrl (Results 1 – 4 of 4) sorted by relevance

/system/update_engine/common/
Dfile_fetcher_unittest.cc30 EXPECT_TRUE(FileFetcher::SupportedUrl("file:///path/to/somewhere.bin")); in TEST_F()
31 EXPECT_TRUE(FileFetcher::SupportedUrl("FILE:///I/LIKE/TO/SHOUT")); in TEST_F()
33 EXPECT_FALSE(FileFetcher::SupportedUrl("file://relative")); in TEST_F()
34 EXPECT_FALSE(FileFetcher::SupportedUrl("http:///no_http_here")); in TEST_F()
Dfile_fetcher.cc44 bool FileFetcher::SupportedUrl(const string& url) { in SupportedUrl() function in chromeos_update_engine::FileFetcher
61 if (!SupportedUrl(url)) { in BeginTransfer()
Dfile_fetcher.h39 static bool SupportedUrl(const std::string& url);
/system/update_engine/aosp/
Dupdate_attempter_android.cc286 if (FileFetcher::SupportedUrl(payload_url)) { in ApplyPayload()