Lines Matching refs:hd_nv
1397 nghttp2_hd_nv hd_nv;
1400 hd_nv.name = nghttp2_hd_table_get(&deflater->ctx, (size_t)idx).name;
1401 nghttp2_rcbuf_incref(hd_nv.name);
1403 rv = nghttp2_rcbuf_new2(&hd_nv.name, nv->name, nv->namelen, mem);
1409 rv = nghttp2_rcbuf_new2(&hd_nv.value, nv->value, nv->valuelen, mem);
1412 nghttp2_rcbuf_decref(hd_nv.name);
1416 hd_nv.token = token;
1417 hd_nv.flags = NGHTTP2_NV_FLAG_NONE;
1419 rv = add_hd_table_incremental(&deflater->ctx, &hd_nv, &deflater->map, hash);
1421 nghttp2_rcbuf_decref(hd_nv.value);
1422 nghttp2_rcbuf_decref(hd_nv.name);
1847 nghttp2_hd_nv hd_nv;
1849 rv = nghttp2_hd_inflate_hd_nv(inflater, &hd_nv, inflate_flags, in, inlen,
1857 nv_out->name = hd_nv.name->base;
1858 nv_out->namelen = hd_nv.name->len;
1860 nv_out->value = hd_nv.value->base;
1861 nv_out->valuelen = hd_nv.value->len;
1863 nv_out->flags = hd_nv.flags;