Lines Matching full:sent
136 ssize_t sent; in do_sendmsg() local
164 while((sent = sendmsg(qctx->sockfd, &msg, 0)) == -1 && SOCKERRNO == EINTR) in do_sendmsg()
167 if(sent == -1) { in do_sendmsg()
180 failf(data, "sendmsg() returned %zd (errno %d); disable GSO", sent, in do_sendmsg()
187 failf(data, "sendmsg() returned %zd (errno %d)", sent, SOCKERRNO); in do_sendmsg()
192 assert(pktlen == (size_t)sent); in do_sendmsg()
195 ssize_t sent; in do_sendmsg()
200 while((sent = send(qctx->sockfd, in do_sendmsg()
205 if(sent == -1) { in do_sendmsg()
210 failf(data, "send() returned %zd (errno %d)", sent, SOCKERRNO); in do_sendmsg()
232 size_t sent; in send_packet_no_gso() local
238 CURLcode curlcode = do_sendmsg(cf, data, qctx, p, len, len, &sent); in send_packet_no_gso()
242 *psent += sent; in send_packet_no_gso()
281 size_t blen, sent; in vquic_flush() local
293 result = vquic_send_packets(cf, data, qctx, buf, blen, gsolen, &sent); in vquic_flush()
294 CURL_TRC_CF(data, cf, "vquic_send(len=%zu, gso=%zu) -> %d, sent=%zu", in vquic_flush()
295 blen, gsolen, result, sent); in vquic_flush()
298 Curl_bufq_skip(&qctx->sendbuf, sent); in vquic_flush()
300 qctx->split_len -= sent; in vquic_flush()
304 Curl_bufq_skip(&qctx->sendbuf, sent); in vquic_flush()
306 qctx->split_len -= sent; in vquic_flush()