Lines Matching refs:sent
128 ssize_t sent; in do_sendmsg() local
156 while((sent = sendmsg(qctx->sockfd, &msg, 0)) == -1 && SOCKERRNO == EINTR) in do_sendmsg()
159 if(sent == -1) { in do_sendmsg()
172 failf(data, "sendmsg() returned %zd (errno %d); disable GSO", sent, in do_sendmsg()
179 failf(data, "sendmsg() returned %zd (errno %d)", sent, SOCKERRNO); in do_sendmsg()
184 assert(pktlen == (size_t)sent); in do_sendmsg()
187 ssize_t sent; in do_sendmsg()
192 while((sent = send(qctx->sockfd, in do_sendmsg()
197 if(sent == -1) { in do_sendmsg()
202 failf(data, "send() returned %zd (errno %d)", sent, SOCKERRNO); in do_sendmsg()
224 size_t sent; in send_packet_no_gso() local
230 CURLcode curlcode = do_sendmsg(cf, data, qctx, p, len, len, &sent); in send_packet_no_gso()
234 *psent += sent; in send_packet_no_gso()
273 size_t blen, sent; in vquic_flush() local
285 result = vquic_send_packets(cf, data, qctx, buf, blen, gsolen, &sent); in vquic_flush()
287 blen, gsolen, result, sent); in vquic_flush()
290 Curl_bufq_skip(&qctx->sendbuf, sent); in vquic_flush()
292 qctx->split_len -= sent; in vquic_flush()
296 Curl_bufq_skip(&qctx->sendbuf, sent); in vquic_flush()
298 qctx->split_len -= sent; in vquic_flush()