OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HttpResponseCode
(Results
1 - 4
of
4
) sorted by null
/system/update_engine/common/
http_common.h
26
enum
HttpResponseCode
{
55
const char *GetHttpResponseDescription(
HttpResponseCode
code);
58
HttpResponseCode
StringToHttpResponseCode(const char *s);
http_common.cc
27
const char *GetHttpResponseDescription(
HttpResponseCode
code) {
29
HttpResponseCode
code;
66
HttpResponseCode
StringToHttpResponseCode(const char *s) {
67
return static_cast<
HttpResponseCode
>(strtoul(s, nullptr, 10));
http_fetcher_unittest.cc
891
const
HttpResponseCode
kRedirectCodes[] = {
[
all
...]
/system/update_engine/
test_http_server.cc
80
HttpResponseCode
return_code{kHttpResponseOk};
181
HttpResponseCode
return_code) {
386
HttpResponseCode
code = StringToHttpResponseCode(url.c_str());
Completed in 182 milliseconds