Searched refs:bytes_recv (Results 1 - 7 of 7) sorted by relevance
/third_party/backends/backend/ |
H A D | xerox_mfp-tcp.c | 54 size_t bytes_recv = 0; in tcp_dev_request() local 73 while (bytes_recv < *resplen && rc > 0) { in tcp_dev_request() 74 rc = recv(dev->dn, resp+bytes_recv, *resplen-bytes_recv, 0); in tcp_dev_request() 76 if (rc > 0) bytes_recv += rc; in tcp_dev_request() 79 __func__, strerror(errno), (int)*resplen, (int)bytes_recv); in tcp_dev_request() 80 *resplen = bytes_recv; in tcp_dev_request() 91 *resplen = bytes_recv; in tcp_dev_request()
|
/third_party/backends/sanei/ |
H A D | sanei_tcp.c | 129 size_t bytes_recv = 0; in sanei_tcp_read() local 137 while (bytes_recv < count && rc > 0) in sanei_tcp_read() 139 rc = recv(fd, buf+bytes_recv, count-bytes_recv, 0); in sanei_tcp_read() 141 bytes_recv += rc; in sanei_tcp_read() 144 return bytes_recv; in sanei_tcp_read()
|
/third_party/node/deps/ngtcp2/ngtcp2/lib/ |
H A D | ngtcp2_cid.c | 87 dcid->bytes_recv = 0; in ngtcp2_dcid_init() 111 dest->bytes_recv = src->bytes_recv; in ngtcp2_dcid_copy()
|
H A D | ngtcp2_cid.h | 85 /* bytes_recv is the number of bytes received from an associated 87 uint64_t bytes_recv; member
|
H A D | ngtcp2_conn.c | 3071 assert(dcid->bytes_recv * 3 >= dcid->bytes_sent); in dcid_tx_left() 3073 return dcid->bytes_recv * 3 - dcid->bytes_sent; in dcid_tx_left() 3084 is because conn->dcid.current gets update for bytes_recv and in conn_server_tx_left() 6726 conn->dcid.current.bytes_recv += dgramlen; in conn_recv_handshake_cpkt() 8389 conn->dcid.current.bytes_recv += dgramlen; in conn_recv_non_probing_pkt_on_new_path() 8482 dcid.bytes_recv = 0; in conn_recv_non_probing_pkt_on_new_path() 8488 dcid.bytes_recv += dgramlen; in conn_recv_non_probing_pkt_on_new_path() 8562 pv->dcid.bytes_recv += dgramlen; in conn_recv_pkt_from_new_path() 8568 pv->fallback_dcid.bytes_recv += dgramlen; in conn_recv_pkt_from_new_path() 8583 bound_dcid->bytes_recv in conn_recv_pkt_from_new_path() [all...] |
/third_party/nghttp2/src/ |
H A D | shrpx_quic_connection_handler.h | 70 size_t bytes_recv; member
|
H A D | shrpx_quic_connection_handler.cc | 705 bytes_recv{0}, 741 bytes_recv += datalen; in handle_packet() 743 if (bytes_sent + pkt.size() > 3 * bytes_recv || in handle_packet()
|
Completed in 17 milliseconds