Lines Matching defs:sendbuf
147 struct bufq sendbuf; /* h3 request body */
150 size_t sendbuf_len_in_flight; /* sendbuf amount "in flight" */
190 Curl_bufq_initp(&stream->sendbuf, &ctx->stream_bufcp,
221 Curl_bufq_free(&stream->sendbuf);
763 !Curl_bufq_is_empty(&ctx->q.sendbuf);
1211 * This is a delta. We have kept this data in `sendbuf` for
1217 Curl_bufq_skip(&stream->sendbuf, skiplen);
1249 /* nghttp3 keeps references to the sendbuf data until it is ACKed
1251 * `sendbuf_len_in_flight` is the amount of bytes in `sendbuf`
1256 if(stream->sendbuf_len_in_flight < Curl_bufq_len(&stream->sendbuf)) {
1259 Curl_bufq_peek_at(&stream->sendbuf,
1273 /* When we stopped sending and everything in `sendbuf` is "in flight",
1291 nwritten, Curl_bufq_len(&stream->sendbuf),
1493 sent = Curl_bufq_write(&stream->sendbuf, buf, len, err);
1495 "sendbuf(len=%zu) -> %zd, %d",
1787 ctx->q.sendbuf.chunk_size / max_payload_size);
1791 nread = Curl_bufq_sipn(&ctx->q.sendbuf, max_payload_size,
1905 stream->upload_left = Curl_bufq_len(&stream->sendbuf);