Lines Matching refs:nghttp2_nv
135 // Creates nghttp2_nv using |name| and |value| and returns it. The
137 // value.c_str(). If |no_index| is true, nghttp2_nv flags member has
139 nghttp2_nv make_nv(const std::string &name, const std::string &value,
142 nghttp2_nv make_nv(const StringRef &name, const StringRef &value,
145 nghttp2_nv make_nv_nocopy(const std::string &name, const std::string &value,
148 nghttp2_nv make_nv_nocopy(const StringRef &name, const StringRef &value,
151 // Create nghttp2_nv from string literal |name| and |value|.
153 constexpr nghttp2_nv make_nv_ll(const char (&name)[N], const char (&value)[M]) {
158 // Create nghttp2_nv from string literal |name| and c-string |value|.
160 nghttp2_nv make_nv_lc(const char (&name)[N], const char *value) {
166 nghttp2_nv make_nv_lc_nocopy(const char (&name)[N], const char *value) {
171 // Create nghttp2_nv from string literal |name| and std::string
174 nghttp2_nv make_nv_ls(const char (&name)[N], const std::string &value) {
180 nghttp2_nv make_nv_ls_nocopy(const char (&name)[N], const std::string &value) {
186 nghttp2_nv make_nv_ls_nocopy(const char (&name)[N], const StringRef &value) {
231 void copy_headers_to_nva(std::vector<nghttp2_nv> &nva,
236 void copy_headers_to_nva_nocopy(std::vector<nghttp2_nv> &nva,
263 void dump_nv(FILE *out, const nghttp2_nv *nva, size_t nvlen);