Searched refs:bytes_sent (Results 1 - 24 of 24) sorted by relevance

/freebsd-11-stable/sys/netgraph/bluetooth/include/
H A Dng_h4.h104 u_int32_t bytes_sent; /* # of bytes sent */ member in struct:__anon12388
H A Dng_ubt.h80 u_int32_t bytes_sent; /* # of bytes sent */ member in struct:__anon12650
H A Dng_bt3c.h95 u_int32_t bytes_sent; /* # of bytes sent */ member in struct:__anon12386
H A Dng_hci.h545 u_int32_t bytes_sent; /* total number of bytes sent */ member in struct:__anon146
/freebsd-11-stable/sys/netgraph/bluetooth/drivers/bt3c/
H A Dng_bt3c_var.h85 #define NG_BT3C_STAT_BYTES_SENT(s, n) (s).bytes_sent += (n)
/freebsd-11-stable/sys/netgraph/bluetooth/drivers/h4/
H A Dng_h4_var.h77 #define NG_H4_STAT_BYTES_SENT(s, n) (s).bytes_sent += (n)
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/
H A DSocket.cpp359 int bytes_sent = 0; local
361 bytes_sent = Send(buf, num_bytes);
362 } while (bytes_sent < 0 && IsInterrupted());
364 if (bytes_sent < 0) {
368 num_bytes = bytes_sent;
378 static_cast<int64_t>(bytes_sent), error.AsCString());
/freebsd-11-stable/contrib/apr/network_io/unix/
H A Dsendrecv.c419 apr_off_t bytes_sent = 0; local
445 bytes_sent = hbytes;
451 if (bytes_sent < hbytes) {
452 *len = bytes_sent;
489 bytes_sent += nbytes;
491 (*len) = bytes_sent;
497 bytes_sent += nbytes;
502 (*len) = bytes_sent;
513 bytes_sent += tbytes;
515 *len = bytes_sent;
[all...]
/freebsd-11-stable/sys/netgraph/bluetooth/drivers/ubt/
H A Dng_ubt_var.h84 #define UBT_STAT_BYTES_SENT(sc, n) (sc)->sc_stat.bytes_sent += (n)
/freebsd-11-stable/sys/dev/vxge/vxgehal/
H A Dvxgehal-fifo.h115 * @bytes_sent:
154 u32 bytes_sent; member in struct:__hal_fifo_txdl_priv_t
H A Dvxgehal-fifo.c884 priv->bytes_sent = 0;
966 txdl_priv->bytes_sent += size;
1082 txdl_priv->bytes_sent += misaligned_size;
1105 txdl_priv->bytes_sent += remaining_size;
1238 txdl_priv->bytes_sent += (unsigned int)txdl_priv->align_dma_offset;
1882 fifo->channel.poll_bytes += txdl_priv->bytes_sent;
/freebsd-11-stable/sys/dev/nxge/xgehal/
H A Dxgehal-fifo-fp.c364 txdl_priv->bytes_sent = 0;
446 txdl_priv->bytes_sent = 0;
777 ((xge_hal_channel_t *)channelh)->poll_bytes += txdl_priv->bytes_sent;
877 txdl_priv->bytes_sent += misaligned_size;
901 txdl_priv->bytes_sent += remaining_size;
992 txdl_priv->bytes_sent += (unsigned int)txdl_priv->align_dma_offset;
1065 txdl_priv->bytes_sent += size;
/freebsd-11-stable/sys/ofed/drivers/infiniband/ulp/sdp/
H A Dsdp_zcopy.c71 tx_sa->bytes_sent = tx_sa->bytes_acked = 0;
106 tx_sa->bytes_sent = tx_sa->umem->length;
171 else if (tx_sa->bytes_acked > tx_sa->bytes_sent) {
193 if (ssk->rx_sa && (tx_sa->bytes_acked < tx_sa->bytes_sent)) {
207 (tx_sa->bytes_acked < tx_sa->bytes_sent) &&
213 if (tx_sa->bytes_acked == tx_sa->bytes_sent)
230 tx_sa->bytes_acked, tx_sa->bytes_sent, tx_sa->abort_flags);
H A Dsdp.h303 u32 bytes_sent; member in struct:tx_srcavail_state
/freebsd-11-stable/sys/dev/liquidio/base/
H A Dlio_iq.h83 uint64_t bytes_sent; /**< Bytes sent through this queue. */ member in struct:lio_iq_stats
H A Dlio_request_manager.c611 LIO_INCR_INSTRQUEUE_PKT_COUNT(oct, iq_no, bytes_sent, datasize);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/posix/
H A DConnectionFileDescriptorPosix.cpp489 size_t bytes_sent = src_len; local
490 error = m_write_sp->Write(src, bytes_sent);
499 static_cast<uint64_t>(bytes_sent), error.AsCString());
527 return bytes_sent;
/freebsd-11-stable/lib/libbluetooth/
H A Dbluetooth.h129 uint32_t bytes_sent; member in struct:bt_devinfo
H A Dhci.c600 di->bytes_sent = rp.r4.stat.bytes_sent;
/freebsd-11-stable/sys/netgraph/bluetooth/hci/
H A Dng_hci_var.h147 #define NG_HCI_STAT_BYTES_SENT(s, b) (s).bytes_sent += (b)
/freebsd-11-stable/sys/dev/nxge/include/
H A Dxgehal-fifo.h197 * @bytes_sent: TODO
236 unsigned int bytes_sent; member in struct:xge_hal_fifo_txdl_priv_t
/freebsd-11-stable/usr.sbin/bluetooth/hccontrol/
H A Dnode.c188 fprintf(stdout, "Bytes sent: %d\n", r.stat.bytes_sent);
/freebsd-11-stable/sys/net/
H A Diflib.c3558 int i, count, consumed, pkt_sent, bytes_sent, mcast_sent, avail; local
3589 consumed = mcast_sent = bytes_sent = pkt_sent = 0;
3625 bytes_sent += m->m_pkthdr.len;
3640 if_inc_counter(ifp, IFCOUNTER_OBYTES, bytes_sent);
/freebsd-11-stable/sys/dev/liquidio/
H A Dlio_sysctl.c536 &oct_dev->instr_queue[i]->stats.bytes_sent,

Completed in 251 milliseconds