Home
last modified time | relevance | path

Searched refs:bytes_sent (Results 1 – 20 of 20) sorted by relevance

/freebsd-12.1/contrib/apr/network_io/unix/
H A Dsendrecv.c419 apr_off_t bytes_sent = 0; in apr_socket_sendfile() local
445 bytes_sent = hbytes; in apr_socket_sendfile()
451 if (bytes_sent < hbytes) { in apr_socket_sendfile()
452 *len = bytes_sent; in apr_socket_sendfile()
497 bytes_sent += nbytes; in apr_socket_sendfile()
502 (*len) = bytes_sent; in apr_socket_sendfile()
513 bytes_sent += tbytes; in apr_socket_sendfile()
515 *len = bytes_sent; in apr_socket_sendfile()
521 (*len) = bytes_sent; in apr_socket_sendfile()
934 (*len) = parms.bytes_sent; in apr_socket_sendfile()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/common/
H A DSocket.cpp335 int bytes_sent = 0; in Write() local
337 bytes_sent = Send(buf, num_bytes); in Write()
338 } while (bytes_sent < 0 && IsInterrupted()); in Write()
340 if (bytes_sent < 0) { in Write()
344 num_bytes = bytes_sent; in Write()
353 static_cast<int64_t>(bytes_sent), error.AsCString()); in Write()
/freebsd-12.1/sys/ofed/drivers/infiniband/ulp/sdp/
H A Dsdp_zcopy.c73 tx_sa->bytes_sent = tx_sa->bytes_acked = 0; in sdp_post_srcavail()
108 tx_sa->bytes_sent = tx_sa->umem->length; in sdp_post_srcavail()
173 else if (tx_sa->bytes_acked > tx_sa->bytes_sent) { in sdp_wait_rdmardcompl()
195 if (ssk->rx_sa && (tx_sa->bytes_acked < tx_sa->bytes_sent)) { in sdp_wait_rdmardcompl()
209 (tx_sa->bytes_acked < tx_sa->bytes_sent) && in sdp_wait_rdmardcompl()
215 if (tx_sa->bytes_acked == tx_sa->bytes_sent) in sdp_wait_rdmardcompl()
232 tx_sa->bytes_acked, tx_sa->bytes_sent, tx_sa->abort_flags); in sdp_wait_rdmardcompl()
H A Dsdp.h303 u32 bytes_sent; member
/freebsd-12.1/sys/netgraph/bluetooth/include/
H A Dng_h4.h106 u_int32_t bytes_sent; /* # of bytes sent */ member
H A Dng_ubt.h82 u_int32_t bytes_sent; /* # of bytes sent */ member
H A Dng_bt3c.h97 u_int32_t bytes_sent; /* # of bytes sent */ member
H A Dng_hci.h548 u_int32_t bytes_sent; /* total number of bytes sent */ member
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/posix/
H A DConnectionFileDescriptorPosix.cpp482 size_t bytes_sent = src_len; in Write() local
483 error = m_write_sp->Write(src, bytes_sent); in Write()
492 static_cast<uint64_t>(bytes_sent), error.AsCString()); in Write()
520 return bytes_sent; in Write()
/freebsd-12.1/sys/netgraph/bluetooth/drivers/h4/
H A Dng_h4_var.h79 #define NG_H4_STAT_BYTES_SENT(s, n) (s).bytes_sent += (n)
/freebsd-12.1/sys/netgraph/bluetooth/drivers/bt3c/
H A Dng_bt3c_var.h87 #define NG_BT3C_STAT_BYTES_SENT(s, n) (s).bytes_sent += (n)
/freebsd-12.1/sys/netgraph/bluetooth/drivers/ubt/
H A Dng_ubt_var.h115 #define UBT_STAT_BYTES_SENT(sc, n) (sc)->sc_stat.bytes_sent += (n)
/freebsd-12.1/sys/dev/liquidio/base/
H A Dlio_iq.h83 uint64_t bytes_sent; /**< Bytes sent through this queue. */ member
H A Dlio_request_manager.c611 LIO_INCR_INSTRQUEUE_PKT_COUNT(oct, iq_no, bytes_sent, datasize); in lio_send_command()
/freebsd-12.1/sys/netgraph/bluetooth/hci/
H A Dng_hci_var.h149 #define NG_HCI_STAT_BYTES_SENT(s, b) (s).bytes_sent += (b)
/freebsd-12.1/lib/libbluetooth/
H A Dbluetooth.h132 uint32_t bytes_sent; member
H A Dhci.c664 di->bytes_sent = rp.r4.stat.bytes_sent; in bt_devinfo()
/freebsd-12.1/usr.sbin/bluetooth/hccontrol/
H A Dnode.c188 fprintf(stdout, "Bytes sent: %d\n", r.stat.bytes_sent); in hci_read_node_stat()
/freebsd-12.1/sys/net/
H A Diflib.c3566 int i, count, consumed, pkt_sent, bytes_sent, mcast_sent, avail; in iflib_txq_drain() local
3598 consumed = mcast_sent = bytes_sent = pkt_sent = 0; in iflib_txq_drain()
3632 bytes_sent += m->m_pkthdr.len; in iflib_txq_drain()
3647 if_inc_counter(ifp, IFCOUNTER_OBYTES, bytes_sent); in iflib_txq_drain()
/freebsd-12.1/sys/dev/liquidio/
H A Dlio_sysctl.c536 &oct_dev->instr_queue[i]->stats.bytes_sent, in lio_add_hw_stats()