Lines Matching defs:outq
40 makes a copy to outq. */
70 nghttp3_ringbuf_init(&stream->outq, 0, sizeof(nghttp3_typed_buf), mem);
92 static void delete_outq(nghttp3_ringbuf *outq, const nghttp3_mem *mem) {
94 size_t i, len = nghttp3_ringbuf_len(outq);
97 tbuf = nghttp3_ringbuf_get(outq, i);
103 nghttp3_ringbuf_free(outq);
164 delete_outq(&stream->outq, stream->mem);
602 outq to schedule stream, so add empty tbuf to outq to
696 return nghttp3_ringbuf_len(&stream->outq) >= 1024;
701 nghttp3_ringbuf *outq = &stream->outq;
704 size_t len = nghttp3_ringbuf_len(outq);
715 dest = nghttp3_ringbuf_get(outq, len - 1);
733 if (nghttp3_ringbuf_full(outq)) {
735 rv = nghttp3_ringbuf_reserve(outq, nlen);
741 dest = nghttp3_ringbuf_push_back(outq);
814 nghttp3_ringbuf *outq = &stream->outq;
815 size_t len = nghttp3_ringbuf_len(outq);
825 tbuf = nghttp3_ringbuf_get(outq, i);
840 tbuf = nghttp3_ringbuf_get(outq, i);
854 nghttp3_ringbuf *outq = &stream->outq;
856 size_t len = nghttp3_ringbuf_len(outq);
862 tbuf = nghttp3_ringbuf_get(outq, i);
882 nghttp3_ringbuf *outq = &stream->outq;
883 size_t len = nghttp3_ringbuf_len(outq);
922 nghttp3_ringbuf_pop_front(&stream->outq);
928 nghttp3_ringbuf *outq = &stream->outq;
936 for (; nghttp3_ringbuf_len(outq);) {
937 tbuf = nghttp3_ringbuf_get(outq, 0);