Home
last modified time | relevance | path

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

/NextBSD/contrib/apr/network_io/unix/
HDsendrecv.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 …]
/NextBSD/contrib/llvm/tools/lldb/source/Host/common/
HDSocket.cpp626 int bytes_sent = 0; in Write() local
631 bytes_sent = ::sendto (m_socket, in Write()
639 bytes_sent = ::send (m_socket, static_cast<const char *>(buf), num_bytes, 0); in Write()
640 } while (bytes_sent < 0 && IsInterrupted ()); in Write()
642 if (bytes_sent < 0) in Write()
648 num_bytes = bytes_sent; in Write()
658 static_cast<int64_t>(bytes_sent), in Write()
/NextBSD/sys/ofed/drivers/infiniband/ulp/sdp/
HDsdp_zcopy.c71 tx_sa->bytes_sent = tx_sa->bytes_acked = 0; in sdp_post_srcavail()
106 tx_sa->bytes_sent = tx_sa->umem->length; in sdp_post_srcavail()
171 else if (tx_sa->bytes_acked > tx_sa->bytes_sent) { in sdp_wait_rdmardcompl()
193 if (ssk->rx_sa && (tx_sa->bytes_acked < tx_sa->bytes_sent)) { in sdp_wait_rdmardcompl()
207 (tx_sa->bytes_acked < tx_sa->bytes_sent) && in sdp_wait_rdmardcompl()
213 if (tx_sa->bytes_acked == tx_sa->bytes_sent) in sdp_wait_rdmardcompl()
230 tx_sa->bytes_acked, tx_sa->bytes_sent, tx_sa->abort_flags); in sdp_wait_rdmardcompl()
HDsdp.h302 u32 bytes_sent; member
/NextBSD/sys/dev/nxge/xgehal/
HDxgehal-fifo-fp.c364 txdl_priv->bytes_sent = 0; in xge_hal_fifo_dtr_reserve_many()
446 txdl_priv->bytes_sent = 0; in xge_hal_fifo_dtr_reserve()
777 ((xge_hal_channel_t *)channelh)->poll_bytes += txdl_priv->bytes_sent; in xge_hal_fifo_dtr_free()
877 txdl_priv->bytes_sent += misaligned_size; in xge_hal_fifo_dtr_buffer_set_aligned()
901 txdl_priv->bytes_sent += remaining_size; in xge_hal_fifo_dtr_buffer_set_aligned()
992 txdl_priv->bytes_sent += (unsigned int)txdl_priv->align_dma_offset; in xge_hal_fifo_dtr_buffer_finalize()
1065 txdl_priv->bytes_sent += size; in xge_hal_fifo_dtr_buffer_set()
/NextBSD/sys/netgraph/bluetooth/include/
HDng_h4.h104 u_int32_t bytes_sent; /* # of bytes sent */ member
HDng_ubt.h80 u_int32_t bytes_sent; /* # of bytes sent */ member
HDng_bt3c.h95 u_int32_t bytes_sent; /* # of bytes sent */ member
HDng_hci.h545 u_int32_t bytes_sent; /* total number of bytes sent */ member
/NextBSD/contrib/llvm/tools/lldb/source/Host/posix/
HDConnectionFileDescriptorPosix.cpp503 size_t bytes_sent = src_len; in Write() local
504 error = m_write_sp->Write(src, bytes_sent); in Write()
510 … static_cast<uint64_t>(src_len), static_cast<uint64_t>(bytes_sent), error.AsCString()); in Write()
539 return bytes_sent; in Write()
/NextBSD/sys/netgraph/bluetooth/drivers/h4/
HDng_h4_var.h77 #define NG_H4_STAT_BYTES_SENT(s, n) (s).bytes_sent += (n)
/NextBSD/sys/netgraph/bluetooth/drivers/bt3c/
HDng_bt3c_var.h85 #define NG_BT3C_STAT_BYTES_SENT(s, n) (s).bytes_sent += (n)
/NextBSD/sys/netgraph/bluetooth/drivers/ubt/
HDng_ubt_var.h84 #define UBT_STAT_BYTES_SENT(sc, n) (sc)->sc_stat.bytes_sent += (n)
/NextBSD/sys/dev/vxge/vxgehal/
HDvxgehal-fifo.h154 u32 bytes_sent; member
HDvxgehal-fifo.c884 priv->bytes_sent = 0; in vxge_hal_fifo_txdl_reserve()
966 txdl_priv->bytes_sent += size; in vxge_hal_fifo_txdl_buffer_set()
1082 txdl_priv->bytes_sent += misaligned_size; in vxge_hal_fifo_txdl_buffer_set_aligned()
1105 txdl_priv->bytes_sent += remaining_size; in vxge_hal_fifo_txdl_buffer_set_aligned()
1238 txdl_priv->bytes_sent += (unsigned int)txdl_priv->align_dma_offset; in vxge_hal_fifo_txdl_buffer_finalize()
1882 fifo->channel.poll_bytes += txdl_priv->bytes_sent; in vxge_hal_fifo_txdl_free()
/NextBSD/lib/libbluetooth/
HDbluetooth.h127 uint32_t bytes_sent; member
HDhci.c600 di->bytes_sent = rp.r4.stat.bytes_sent; in bt_devinfo()
/NextBSD/sys/netgraph/bluetooth/hci/
HDng_hci_var.h147 #define NG_HCI_STAT_BYTES_SENT(s, b) (s).bytes_sent += (b)
/NextBSD/sys/dev/nxge/include/
HDxgehal-fifo.h236 unsigned int bytes_sent; member
/NextBSD/usr.sbin/bluetooth/hccontrol/
HDnode.c186 fprintf(stdout, "Bytes sent: %d\n", r.stat.bytes_sent); in hci_read_node_stat()
/NextBSD/sys/net/
HDiflib.c2341 int i, count, pkt_sent, bytes_sent, mcast_sent, avail; in iflib_txq_drain() local
2362 mcast_sent = bytes_sent = pkt_sent = 0; in iflib_txq_drain()
2380 bytes_sent += mp[i]->m_pkthdr.len; in iflib_txq_drain()
2394 if_inc_counter(ifp, IFCOUNTER_OBYTES, bytes_sent); in iflib_txq_drain()