/third_party/nghttp2/lib/ |
H A D | nghttp2_rcbuf.c | 25 #include "nghttp2_rcbuf.h" 33 int nghttp2_rcbuf_new(nghttp2_rcbuf **rcbuf_ptr, size_t size, in nghttp2_rcbuf_new() 37 p = nghttp2_mem_malloc(mem, sizeof(nghttp2_rcbuf) + size); in nghttp2_rcbuf_new() 46 (*rcbuf_ptr)->base = p + sizeof(nghttp2_rcbuf); in nghttp2_rcbuf_new() 53 int nghttp2_rcbuf_new2(nghttp2_rcbuf **rcbuf_ptr, const uint8_t *src, in nghttp2_rcbuf_new2() 71 void nghttp2_rcbuf_del(nghttp2_rcbuf *rcbuf) { in nghttp2_rcbuf_del() 75 void nghttp2_rcbuf_incref(nghttp2_rcbuf *rcbuf) { in nghttp2_rcbuf_incref() 83 void nghttp2_rcbuf_decref(nghttp2_rcbuf *rcbuf) { in nghttp2_rcbuf_decref() 95 nghttp2_vec nghttp2_rcbuf_get_buf(nghttp2_rcbuf *rcbuf) { in nghttp2_rcbuf_get_buf() 100 int nghttp2_rcbuf_is_static(const nghttp2_rcbuf *rcbu [all...] |
H A D | nghttp2_rcbuf.h | 34 struct nghttp2_rcbuf { struct 48 * Allocates nghttp2_rcbuf object with |size| as initial buffer size. 57 int nghttp2_rcbuf_new(nghttp2_rcbuf **rcbuf_ptr, size_t size, nghttp2_mem *mem); 72 int nghttp2_rcbuf_new2(nghttp2_rcbuf **rcbuf_ptr, const uint8_t *src, 78 void nghttp2_rcbuf_del(nghttp2_rcbuf *rcbuf);
|
H A D | nghttp2_hd.h | 37 #include "nghttp2_rcbuf.h" 124 nghttp2_rcbuf *name; 127 nghttp2_rcbuf *value; 152 nghttp2_rcbuf name; 153 nghttp2_rcbuf value; 238 nghttp2_rcbuf *namercbuf, *valuercbuf; 241 nghttp2_rcbuf *nv_name_keep, *nv_value_keep;
|
H A D | nghttp2_hd.c | 1308 nghttp2_hd_nv nv = {(nghttp2_rcbuf *)&ent->name, in nghttp2_hd_table_get() 1309 (nghttp2_rcbuf *)&ent->value, ent->token, in nghttp2_hd_table_get()
|
/third_party/node/deps/nghttp2/lib/ |
H A D | nghttp2_rcbuf.c | 25 #include "nghttp2_rcbuf.h" 33 int nghttp2_rcbuf_new(nghttp2_rcbuf **rcbuf_ptr, size_t size, in nghttp2_rcbuf_new() 37 p = nghttp2_mem_malloc(mem, sizeof(nghttp2_rcbuf) + size); in nghttp2_rcbuf_new() 46 (*rcbuf_ptr)->base = p + sizeof(nghttp2_rcbuf); in nghttp2_rcbuf_new() 53 int nghttp2_rcbuf_new2(nghttp2_rcbuf **rcbuf_ptr, const uint8_t *src, in nghttp2_rcbuf_new2() 71 void nghttp2_rcbuf_del(nghttp2_rcbuf *rcbuf) { in nghttp2_rcbuf_del() 75 void nghttp2_rcbuf_incref(nghttp2_rcbuf *rcbuf) { in nghttp2_rcbuf_incref() 83 void nghttp2_rcbuf_decref(nghttp2_rcbuf *rcbuf) { in nghttp2_rcbuf_decref() 95 nghttp2_vec nghttp2_rcbuf_get_buf(nghttp2_rcbuf *rcbuf) { in nghttp2_rcbuf_get_buf() 100 int nghttp2_rcbuf_is_static(const nghttp2_rcbuf *rcbu [all...] |
H A D | nghttp2_rcbuf.h | 34 struct nghttp2_rcbuf { struct 48 * Allocates nghttp2_rcbuf object with |size| as initial buffer size. 57 int nghttp2_rcbuf_new(nghttp2_rcbuf **rcbuf_ptr, size_t size, nghttp2_mem *mem); 72 int nghttp2_rcbuf_new2(nghttp2_rcbuf **rcbuf_ptr, const uint8_t *src, 78 void nghttp2_rcbuf_del(nghttp2_rcbuf *rcbuf);
|
H A D | nghttp2_hd.h | 37 #include "nghttp2_rcbuf.h" 124 nghttp2_rcbuf *name; 127 nghttp2_rcbuf *value; 152 nghttp2_rcbuf name; 153 nghttp2_rcbuf value; 238 nghttp2_rcbuf *namercbuf, *valuercbuf; 241 nghttp2_rcbuf *nv_name_keep, *nv_value_keep;
|
H A D | nghttp2_hd.c | 1308 nghttp2_hd_nv nv = {(nghttp2_rcbuf *)&ent->name, in nghttp2_hd_table_get() 1309 (nghttp2_rcbuf *)&ent->value, ent->token, in nghttp2_hd_table_get()
|
/third_party/nghttp2/src/ |
H A D | HttpServer.h | 130 nghttp2_rcbuf *method; 131 nghttp2_rcbuf *scheme; 132 nghttp2_rcbuf *authority; 133 nghttp2_rcbuf *host; 134 nghttp2_rcbuf *path; 135 nghttp2_rcbuf *ims; 136 nghttp2_rcbuf *expect;
|
H A D | shrpx_downstream.h | 495 void add_rcbuf(nghttp2_rcbuf *rcbuf); 540 std::vector<nghttp2_rcbuf *> rcbufs_;
|
H A D | shrpx_http2_upstream.cc | 163 nghttp2_rcbuf *name, nghttp2_rcbuf *value, in on_header_callback2() 235 const nghttp2_frame *frame, nghttp2_rcbuf *name, in on_invalid_header_callback2() 236 nghttp2_rcbuf *value, uint8_t flags, in on_invalid_header_callback2()
|
H A D | shrpx_http2_session.cc | 902 nghttp2_rcbuf *name, nghttp2_rcbuf *value, in on_header_callback2() 1011 const nghttp2_frame *frame, nghttp2_rcbuf *name, in on_invalid_header_callback2() 1012 nghttp2_rcbuf *value, uint8_t flags, in on_invalid_header_callback2()
|
H A D | HttpServer.cc | 1408 nghttp2_rcbuf *name, nghttp2_rcbuf *value, in on_header_callback2()
|
H A D | shrpx_downstream.cc | 1132 void Downstream::add_rcbuf(nghttp2_rcbuf *rcbuf) { in add_rcbuf()
|
/third_party/nghttp2/lib/includes/nghttp2/ |
H A D | nghttp2.h | 467 struct nghttp2_rcbuf; 475 typedef struct nghttp2_rcbuf nghttp2_rcbuf; typedef 482 NGHTTP2_EXTERN void nghttp2_rcbuf_incref(nghttp2_rcbuf *rcbuf); 491 NGHTTP2_EXTERN void nghttp2_rcbuf_decref(nghttp2_rcbuf *rcbuf); 498 NGHTTP2_EXTERN nghttp2_vec nghttp2_rcbuf_get_buf(nghttp2_rcbuf *rcbuf); 507 NGHTTP2_EXTERN int nghttp2_rcbuf_is_static(const nghttp2_rcbuf *rcbuf); 1808 nghttp2_rcbuf *name, 1809 nghttp2_rcbuf *value, uint8_t flags, 1878 nghttp2_session *session, const nghttp2_frame *frame, nghttp2_rcbuf *nam [all...] |
/third_party/node/deps/nghttp2/lib/includes/nghttp2/ |
H A D | nghttp2.h | 462 struct nghttp2_rcbuf; 470 typedef struct nghttp2_rcbuf nghttp2_rcbuf; typedef 477 NGHTTP2_EXTERN void nghttp2_rcbuf_incref(nghttp2_rcbuf *rcbuf); 486 NGHTTP2_EXTERN void nghttp2_rcbuf_decref(nghttp2_rcbuf *rcbuf); 493 NGHTTP2_EXTERN nghttp2_vec nghttp2_rcbuf_get_buf(nghttp2_rcbuf *rcbuf); 502 NGHTTP2_EXTERN int nghttp2_rcbuf_is_static(const nghttp2_rcbuf *rcbuf); 1803 nghttp2_rcbuf *name, 1804 nghttp2_rcbuf *value, uint8_t flags, 1873 nghttp2_session *session, const nghttp2_frame *frame, nghttp2_rcbuf *nam [all...] |
/third_party/nghttp2/fuzz/ |
H A D | fuzz_target.cc | 19 nghttp2_rcbuf *name, nghttp2_rcbuf *value, in on_header_callback2()
|
H A D | fuzz_target_fdp.cc | 23 nghttp2_rcbuf *name, nghttp2_rcbuf *value, in on_header_callback2()
|
/third_party/node/src/ |
H A D | node_http2.h | 123 typedef nghttp2_rcbuf rcbuf_t; 398 bool AddHeader(nghttp2_rcbuf* name, nghttp2_rcbuf* value, uint8_t flags); 744 void StopTrackingRcbuf(nghttp2_rcbuf* buf); 805 nghttp2_rcbuf* name, 806 nghttp2_rcbuf* value, 830 nghttp2_rcbuf* name, 831 nghttp2_rcbuf* value,
|
H A D | node_http2_state.h | 8 struct nghttp2_rcbuf;
|
H A D | node_http2.cc | 454 void Http2Session::StopTrackingRcbuf(nghttp2_rcbuf* buf) { in StopTrackingRcbuf() 926 nghttp2_rcbuf* name, in OnHeaderCallback() 927 nghttp2_rcbuf* value, in OnHeaderCallback() 1150 nghttp2_rcbuf* name, in OnInvalidHeader() 1151 nghttp2_rcbuf* value, in OnInvalidHeader() 2418 bool Http2Stream::AddHeader(nghttp2_rcbuf* name, in AddHeader() 2419 nghttp2_rcbuf* value, in AddHeader()
|