Home
last modified time | relevance | path

Searched refs:HTTP_REQUEST (Results 1 – 13 of 13) sorted by relevance

/third_party/nghttp2/third-party/llhttp/src/
Dhttp.c21 (parser->type == HTTP_REQUEST || parser->status_code == 101); in llhttp__before_headers_complete()
54 if (parser->type == HTTP_REQUEST && (parser->flags & F_LENIENT) == 0) { in llhttp__after_headers_complete()
110 if (parser->type == HTTP_REQUEST) { in llhttp_message_needs_eof()
/third_party/node/deps/llhttp/src/
Dhttp.c21 (parser->type == HTTP_REQUEST || parser->status_code == 101); in llhttp__before_headers_complete()
54 if (parser->type == HTTP_REQUEST && (parser->flags & F_LENIENT) == 0) { in llhttp__after_headers_complete()
110 if (parser->type == HTTP_REQUEST) { in llhttp_message_needs_eof()
/third_party/node/src/
Dnode_http_parser.cc333 if (parser_.type == HTTP_REQUEST) in on_headers_complete()
341 if (parser_.type == HTTP_REQUEST) { in on_headers_complete()
566 CHECK(type == HTTP_REQUEST || type == HTTP_RESPONSE); in Initialize()
573 (type == HTTP_REQUEST ? in Initialize()
961 Integer::New(env->isolate(), HTTP_REQUEST)); in InitializeHttpParser()
Dinspector_socket.cc442 llhttp_init(&parser_, HTTP_REQUEST, &parser_settings); in HttpHandler()
/third_party/boost/libs/beast/test/bench/parser/
Dnodejs_parser.hpp357 ? http_parser_type::HTTP_REQUEST in nodejs_basic_parser()
476 if(p->type == http_parser_type::HTTP_REQUEST) in cb_headers_complete()
/third_party/boost/libs/beast/test/bench/parser/nodejs-parser/
Dhttp_parser.c445 #define start_state (parser->type == HTTP_REQUEST ? s_start_req : s_start_res)
733 parser->type = HTTP_REQUEST; in http_parser_execute()
751 parser->type = HTTP_REQUEST; in http_parser_execute()
2097 if (parser->type == HTTP_REQUEST) { in http_message_needs_eof()
2150 …parser->state = (t == HTTP_REQUEST ? s_start_req : (t == HTTP_RESPONSE ? s_start_res : s_start_req… in http_parser_init()
Dhttp_parser.h144 enum http_parser_type { HTTP_REQUEST, HTTP_RESPONSE, HTTP_BOTH }; enumerator
DREADME.md46 http_parser_init(parser, HTTP_REQUEST);
182 http_parser_init(parser, HTTP_REQUEST); /* initialise parser */
/third_party/node/deps/llhttp/include/
Dllhttp.h102 HTTP_REQUEST = 1, enumerator
/third_party/nghttp2/third-party/llhttp/include/
Dllhttp.h101 HTTP_REQUEST = 1, enumerator
/third_party/node/deps/llhttp/
DREADME.md75 * HTTP_REQUEST and HTTP_RESPONSE parsing automatically while reading the first
/third_party/nghttp2/third-party/llhttp/
DREADME.md75 * HTTP_REQUEST and HTTP_RESPONSE parsing automatically while reading the first
/third_party/nghttp2/src/
Dshrpx_https_upstream.cc84 llhttp_init(&htp_, HTTP_REQUEST, &htp_hooks); in HttpsUpstream()