OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HTTP_STATUS
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/net/http/
http_status_code_list.h
12
#ifndef
HTTP_STATUS
13
#error "
HTTP_STATUS
should be defined before including this file"
17
HTTP_STATUS
(CONTINUE, 100, "Continue")
18
HTTP_STATUS
(SWITCHING_PROTOCOLS, 101, "Switching Protocols")
21
HTTP_STATUS
(OK, 200, "OK")
22
HTTP_STATUS
(CREATED, 201, "Created")
23
HTTP_STATUS
(ACCEPTED, 202, "Accepted")
24
HTTP_STATUS
(NON_AUTHORITATIVE_INFORMATION, 203, "Non-Authoritative Information")
25
HTTP_STATUS
(NO_CONTENT, 204, "No Content")
26
HTTP_STATUS
(RESET_CONTENT, 205, "Reset Content"
[
all
...]
http_status_code.cc
14
#define
HTTP_STATUS
(label, code, reason) case HTTP_ ## label: return reason;
16
#undef
HTTP_STATUS
http_status_code.h
15
#define
HTTP_STATUS
(label, code, reason) HTTP_ ## label = code,
17
#undef
HTTP_STATUS
Completed in 58 milliseconds