OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full: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
;
http_fetcher_unittest.cc
424
EXPECT_EQ(kHttpResponseNotFound, fetcher->
http_response_code
());
426
EXPECT_EQ(kHttpResponseOk, fetcher->
http_response_code
());
744
EXPECT_EQ(kHttpResponsePartialContent, fetcher->
http_response_code
());
812
EXPECT_EQ(0, fetcher->
http_response_code
());
983
EXPECT_EQ(kHttpResponseOk, fetcher->
http_response_code
());
985
EXPECT_GE(fetcher->
http_response_code
(), kHttpResponseMovedPermanently);
986
EXPECT_LE(fetcher->
http_response_code
(), kHttpResponseTempRedirect);
[
all
...]
mock_http_fetcher.h
105
void FailTransfer(int
http_response_code
);
multi_range_http_fetcher.cc
123
http_response_code_ = fetcher->
http_response_code
();
http_fetcher.h
58
int
http_response_code
() const { return http_response_code_; }
function in class:chromeos_update_engine::HttpFetcher
/system/update_engine/payload_consumer/
download_action.h
97
int GetHTTPResponseCode() { return http_fetcher_->
http_response_code
(); }
/system/update_engine/
libcurl_http_fetcher.cc
746
long
http_response_code
= 0; // NOLINT(runtime/int) - curl needs long.
local
752
&
http_response_code
) == CURLE_OK) {
753
http_response_code_ = static_cast<int>(
http_response_code
);
omaha_request_action.h
159
int GetHTTPResponseCode() { return http_fetcher_->
http_response_code
(); }
update_attempter_unittest.cc
317
EXPECT_EQ(500, attempter_.
http_response_code
());
482
EXPECT_EQ(0, attempter_.
http_response_code
());
[
all
...]
update_attempter.h
122
int
http_response_code
() const { return http_response_code_; }
function in class:chromeos_update_engine::UpdateAttempter
Completed in 200 milliseconds