Lines Matching refs:frq
68 nghttp3_ringbuf_init(&stream->frq, 0, sizeof(nghttp3_frame_entry), mem);
139 static void delete_frq(nghttp3_ringbuf *frq, const nghttp3_mem *mem) {
141 size_t i, len = nghttp3_ringbuf_len(frq);
144 frent = nghttp3_ringbuf_get(frq, i);
154 nghttp3_ringbuf_free(frq);
166 delete_frq(&stream->frq, stream->mem);
227 nghttp3_ringbuf *frq = &stream->frq;
231 if (nghttp3_ringbuf_full(frq)) {
232 size_t nlen = nghttp3_max(NGHTTP3_MIN_RBLEN, nghttp3_ringbuf_len(frq) * 2);
233 rv = nghttp3_ringbuf_reserve(frq, nlen);
239 dest = nghttp3_ringbuf_push_back(frq);
246 nghttp3_ringbuf *frq = &stream->frq;
251 for (; nghttp3_ringbuf_len(frq) && !nghttp3_stream_outq_is_full(stream) &&
253 frent = nghttp3_ringbuf_get(frq, 0);
298 nghttp3_ringbuf_pop_front(frq);
808 (nghttp3_ringbuf_len(&stream->frq) &&
847 *pfin = nghttp3_ringbuf_len(&stream->frq) == 0 && i == len &&