Lines Matching refs:hd
34 uint8_t *nghttp3_frame_write_hd(uint8_t *p, const nghttp3_frame_hd *hd) {
35 p = nghttp3_put_varint(p, hd->type);
36 p = nghttp3_put_varint(p, hd->length);
40 size_t nghttp3_frame_write_hd_len(const nghttp3_frame_hd *hd) {
41 return nghttp3_put_varint_len(hd->type) + nghttp3_put_varint_len(hd->length);
48 p = nghttp3_frame_write_hd(p, &fr->hd);
76 p = nghttp3_frame_write_hd(p, &fr->hd);
95 p = nghttp3_frame_write_hd(p, &fr->hd);
120 return nghttp3_put_varint_len(fr->hd.type) +