Home
last modified time | relevance | path

Searched refs:nghttp3_put_varint (Results 1 – 4 of 4) sorted by relevance

/third_party/node/deps/ngtcp2/nghttp3/lib/
Dnghttp3_frame.c35 p = nghttp3_put_varint(p, hd->type); in nghttp3_frame_write_hd()
36 p = nghttp3_put_varint(p, hd->length); in nghttp3_frame_write_hd()
51 p = nghttp3_put_varint(p, (int64_t)fr->iv[i].id); in nghttp3_frame_write_settings()
52 p = nghttp3_put_varint(p, (int64_t)fr->iv[i].value); in nghttp3_frame_write_settings()
77 p = nghttp3_put_varint(p, fr->id); in nghttp3_frame_write_goaway()
96 p = nghttp3_put_varint(p, fr->pri_elem_id); in nghttp3_frame_write_priority_update()
Dnghttp3_conv.h184 uint8_t *nghttp3_put_varint(uint8_t *p, int64_t n);
Dnghttp3_conv.c93 uint8_t *nghttp3_put_varint(uint8_t *p, int64_t n) { in nghttp3_put_varint() function
Dnghttp3_stream.c324 chunk->last = nghttp3_put_varint(chunk->last, (int64_t)stream->type); in nghttp3_stream_write_stream_type()