Lines Matching defs:inq
71 nghttp3_ringbuf_init(&stream->inq, 0, sizeof(nghttp3_buf), mem);
163 delete_chunks(&stream->inq, stream->mem);
987 nghttp3_ringbuf *inq = &stream->inq;
988 size_t len = nghttp3_ringbuf_len(inq);
996 buf = nghttp3_ringbuf_get(inq, len - 1);
1005 if (nghttp3_ringbuf_full(inq)) {
1007 nghttp3_max(NGHTTP3_MIN_RBLEN, nghttp3_ringbuf_len(inq) * 2);
1008 rv = nghttp3_ringbuf_reserve(inq, nlen);
1019 buf = nghttp3_ringbuf_push_back(inq);
1032 nghttp3_ringbuf *inq = &stream->inq;
1033 size_t len = nghttp3_ringbuf_len(inq);
1038 buf = nghttp3_ringbuf_get(inq, i);