Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/apr/network_io/unix/
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()
489 bytes_sent += nbytes; in apr_socket_sendfile()
491 (*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()
[all …]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Host/common/
DSocket.cpp353 int bytes_sent = 0; in Write() local
355 bytes_sent = Send(buf, num_bytes); in Write()
356 } while (bytes_sent < 0 && IsInterrupted()); in Write()
358 if (bytes_sent < 0) { in Write()
362 num_bytes = bytes_sent; in Write()
372 static_cast<int64_t>(bytes_sent), error.AsCString()); in Write()
/freebsd-12-stable/sys/ofed/drivers/infiniband/ulp/sdp/
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()
Dsdp.h303 u32 bytes_sent; member
/freebsd-12-stable/sys/netgraph/bluetooth/include/
Dng_h4.h106 u_int32_t bytes_sent; /* # of bytes sent */ member
Dng_ubt.h82 u_int32_t bytes_sent; /* # of bytes sent */ member
Dng_bt3c.h97 u_int32_t bytes_sent; /* # of bytes sent */ member
Dng_hci.h548 u_int32_t bytes_sent; /* total number of bytes sent */ member
/freebsd-12-stable/contrib/llvm-project/lldb/source/Host/posix/
DConnectionFileDescriptorPosix.cpp490 size_t bytes_sent = src_len; in Write() local
491 error = m_write_sp->Write(src, bytes_sent); in Write()
500 static_cast<uint64_t>(bytes_sent), error.AsCString()); in Write()
528 return bytes_sent; in Write()
/freebsd-12-stable/sys/netgraph/bluetooth/drivers/h4/
Dng_h4_var.h79 #define NG_H4_STAT_BYTES_SENT(s, n) (s).bytes_sent += (n)
/freebsd-12-stable/sys/netgraph/bluetooth/drivers/bt3c/
Dng_bt3c_var.h87 #define NG_BT3C_STAT_BYTES_SENT(s, n) (s).bytes_sent += (n)
/freebsd-12-stable/sys/netgraph/bluetooth/drivers/ubt/
Dng_ubt_var.h119 #define UBT_STAT_BYTES_SENT(sc, n) (sc)->sc_stat.bytes_sent += (n)
/freebsd-12-stable/sys/dev/liquidio/base/
Dlio_iq.h83 uint64_t bytes_sent; /**< Bytes sent through this queue. */ member
Dlio_request_manager.c611 LIO_INCR_INSTRQUEUE_PKT_COUNT(oct, iq_no, bytes_sent, datasize); in lio_send_command()
/freebsd-12-stable/sys/netgraph/bluetooth/hci/
Dng_hci_var.h149 #define NG_HCI_STAT_BYTES_SENT(s, b) (s).bytes_sent += (b)
/freebsd-12-stable/lib/libbluetooth/
Dbluetooth.h132 uint32_t bytes_sent; member
Dhci.c664 di->bytes_sent = rp.r4.stat.bytes_sent; in bt_devinfo()
/freebsd-12-stable/usr.sbin/bluetooth/hccontrol/
Dnode.c188 fprintf(stdout, "Bytes sent: %d\n", r.stat.bytes_sent); in hci_read_node_stat()
/freebsd-12-stable/sys/net/
Diflib.c3793 int avail, bytes_sent, skipped, count, err, i; in iflib_txq_drain() local
3833 skipped = mcast_sent = bytes_sent = pkt_sent = 0; in iflib_txq_drain()
3871 bytes_sent += m->m_pkthdr.len; in iflib_txq_drain()
3883 if_inc_counter(ifp, IFCOUNTER_OBYTES, bytes_sent); in iflib_txq_drain()
/freebsd-12-stable/sys/dev/liquidio/
Dlio_sysctl.c536 &oct_dev->instr_queue[i]->stats.bytes_sent, in lio_add_hw_stats()