HomeSort by relevance Sort by last modified time
    Searched refs:http_response_code (Results 1 - 10 of 10) sorted by null

  /system/update_engine/common/
mock_http_fetcher.cc 148 void MockHttpFetcher::FailTransfer(int http_response_code) {
150 http_response_code_ = http_response_code;
mock_http_fetcher.h 105 void FailTransfer(int http_response_code);
http_fetcher.h 58 int http_response_code() const { return http_response_code_; } function in class:chromeos_update_engine::HttpFetcher
multi_range_http_fetcher.cc 123 http_response_code_ = fetcher->http_response_code();
http_fetcher_unittest.cc 425 EXPECT_EQ(kHttpResponseNotFound, fetcher->http_response_code());
427 EXPECT_EQ(kHttpResponseOk, fetcher->http_response_code());
745 EXPECT_EQ(kHttpResponsePartialContent, fetcher->http_response_code());
813 EXPECT_EQ(0, fetcher->http_response_code());
984 EXPECT_EQ(kHttpResponseOk, fetcher->http_response_code());
986 EXPECT_GE(fetcher->http_response_code(), kHttpResponseMovedPermanently);
987 EXPECT_LE(fetcher->http_response_code(), kHttpResponseTempRedirect);
    [all...]
  /system/update_engine/payload_consumer/
download_action.h 95 int GetHTTPResponseCode() { return http_fetcher_->http_response_code(); }
  /system/update_engine/
omaha_request_action.h 159 int GetHTTPResponseCode() { return http_fetcher_->http_response_code(); }
libcurl_http_fetcher.cc 750 long http_response_code = 0; // NOLINT(runtime/int) - curl needs long. local
756 &http_response_code) == CURLE_OK) {
757 http_response_code_ = static_cast<int>(http_response_code);
update_attempter.h 142 int http_response_code() const { return http_response_code_; } function in class:chromeos_update_engine::UpdateAttempter
update_attempter_unittest.cc 228 EXPECT_EQ(503, attempter_.http_response_code());
255 EXPECT_EQ(500, attempter_.http_response_code());
420 EXPECT_EQ(0, attempter_.http_response_code());
    [all...]

Completed in 234 milliseconds