Searched refs:make_nv (Results 1 – 9 of 9) sorted by relevance
/third_party/nghttp2/tests/ |
D | nghttp2_frame_test.c | 37 static nghttp2_nv make_nv(const char *name, const char *value) { in make_nv() function 52 nva[0] = make_nv("method", "GET"); in headers() 53 nva[1] = make_nv("scheme", "https"); in headers() 54 nva[2] = make_nv("url", "/"); in headers() 55 nva[3] = make_nv("x-head", "foo"); in headers() 56 nva[4] = make_nv("x-head", "bar"); in headers() 57 nva[5] = make_nv("version", "HTTP/1.1"); in headers() 58 nva[6] = make_nv("x-empty", ""); in headers()
|
/third_party/nghttp2/src/ |
D | asio_server_http2_handler.cc | 349 nva.push_back(nghttp2::http2::make_nv(hd.first, hd.second.value, in start_response() 383 nva.push_back(nghttp2::http2::make_nv(hd.first, hd.second.value, in submit_trailer() 450 nva.push_back(nghttp2::http2::make_nv(hd.first, hd.second.value, in push_promise()
|
D | http2.h | 139 nghttp2_nv make_nv(const std::string &name, const std::string &value, 142 nghttp2_nv make_nv(const StringRef &name, const StringRef &value,
|
D | asio_client_session_impl.cc | 410 nva.push_back(nghttp2::http2::make_nv(hd.first, hd.second.value, in write_trailer() 541 http2::make_nv(kv.first, kv.second.value, kv.second.sensitive)); in submit()
|
D | http2.cc | 344 nghttp2_nv make_nv(const std::string &name, const std::string &value, in make_nv() function 349 nghttp2_nv make_nv(const StringRef &name, const StringRef &value, in make_nv() function
|
D | h2load.cc | 2592 nva.push_back(http2::make_nv(nv.name, nv.value, false)); in main() 2596 nva.push_back(http2::make_nv(StringRef::from_lit("content-length"), in main()
|
D | nghttp.cc | 489 nva.push_back(http2::make_nv(kv.name, kv.value, kv.no_index)); in submit_request() 2439 nva.push_back(http2::make_nv(kv.name, kv.value, kv.no_index)); in file_read_callback()
|
D | HttpServer.cc | 1097 nva.push_back(http2::make_nv(kv.name, kv.value, kv.no_index)); in file_read_callback()
|
D | shrpx_http2_upstream.cc | 2342 nva.push_back(http2::make_nv(kv.name, kv.value, kv.no_index)); in on_downstream_push_promise_complete()
|