Home
last modified time | relevance | path

Searched refs:nghttp3_ringbuf (Results 1 – 7 of 7) sorted by relevance

/third_party/node/deps/ngtcp2/nghttp3/lib/
Dnghttp3_ringbuf.h37 typedef struct nghttp3_ringbuf { struct
50 } nghttp3_ringbuf; argument
63 int nghttp3_ringbuf_init(nghttp3_ringbuf *rb, size_t nmemb, size_t size,
70 void nghttp3_ringbuf_free(nghttp3_ringbuf *rb);
78 void *nghttp3_ringbuf_push_front(nghttp3_ringbuf *rb);
85 void *nghttp3_ringbuf_push_back(nghttp3_ringbuf *rb);
90 void nghttp3_ringbuf_pop_front(nghttp3_ringbuf *rb);
95 void nghttp3_ringbuf_pop_back(nghttp3_ringbuf *rb);
99 void nghttp3_ringbuf_resize(nghttp3_ringbuf *rb, size_t len);
103 void *nghttp3_ringbuf_get(nghttp3_ringbuf *rb, size_t offset);
[all …]
Dnghttp3_ringbuf.c46 int nghttp3_ringbuf_init(nghttp3_ringbuf *rb, size_t nmemb, size_t size, in nghttp3_ringbuf_init()
72 void nghttp3_ringbuf_free(nghttp3_ringbuf *rb) { in nghttp3_ringbuf_free()
80 void *nghttp3_ringbuf_push_front(nghttp3_ringbuf *rb) { in nghttp3_ringbuf_push_front()
87 void *nghttp3_ringbuf_push_back(nghttp3_ringbuf *rb) { in nghttp3_ringbuf_push_back()
99 void nghttp3_ringbuf_pop_front(nghttp3_ringbuf *rb) { in nghttp3_ringbuf_pop_front()
104 void nghttp3_ringbuf_pop_back(nghttp3_ringbuf *rb) { in nghttp3_ringbuf_pop_back()
109 void nghttp3_ringbuf_resize(nghttp3_ringbuf *rb, size_t len) { in nghttp3_ringbuf_resize()
114 void *nghttp3_ringbuf_get(nghttp3_ringbuf *rb, size_t offset) { in nghttp3_ringbuf_get()
120 int nghttp3_ringbuf_full(nghttp3_ringbuf *rb) { return rb->len == rb->nmemb; } in nghttp3_ringbuf_full()
122 int nghttp3_ringbuf_reserve(nghttp3_ringbuf *rb, size_t nmemb) { in nghttp3_ringbuf_reserve()
Dnghttp3_stream.c92 static void delete_outq(nghttp3_ringbuf *outq, const nghttp3_mem *mem) { in delete_outq()
106 static void delete_chunks(nghttp3_ringbuf *chunks, const nghttp3_mem *mem) { in delete_chunks()
118 static void delete_out_chunks(nghttp3_ringbuf *chunks, in delete_out_chunks()
139 static void delete_frq(nghttp3_ringbuf *frq, const nghttp3_mem *mem) { in delete_frq()
227 nghttp3_ringbuf *frq = &stream->frq; in nghttp3_stream_frq_add()
246 nghttp3_ringbuf *frq = &stream->frq; in nghttp3_stream_fill_outq()
701 nghttp3_ringbuf *outq = &stream->outq; in nghttp3_stream_outq_add()
748 nghttp3_ringbuf *chunks = &stream->chunks; in nghttp3_stream_ensure_chunk()
790 nghttp3_ringbuf *chunks = &stream->chunks; in nghttp3_stream_get_chunk()
814 nghttp3_ringbuf *outq = &stream->outq; in nghttp3_stream_writev()
[all …]
Dnghttp3_stream.h212 nghttp3_ringbuf frq;
213 nghttp3_ringbuf chunks;
214 nghttp3_ringbuf outq;
217 nghttp3_ringbuf inq;
Dnghttp3_qpack.h126 nghttp3_ringbuf refs;
149 nghttp3_ringbuf dtable;
Dnghttp3_qpack.c983 nghttp3_ringbuf *dtable = &encoder->ctx.dtable; in nghttp3_qpack_encoder_shrink_dtable()
1344 nghttp3_ringbuf *dtable = &encoder->ctx.dtable; in qpack_encoder_can_index()
/third_party/node/deps/ngtcp2/
Dngtcp2.gyp74 'nghttp3/lib/nghttp3_ringbuf.c',