Home
last modified time | relevance | path

Searched refs:rx_bytes (Results 1 – 14 of 14) sorted by relevance

/openbmc/u-boot/drivers/spi/
H A Datcspi200_spi.c193 unsigned int event, rx_bytes; in __atcspi200_spi_xfer() local
259 rx_bytes = CHUNK_SIZE; in __atcspi200_spi_xfer()
261 rx_bytes = num_bytes; in __atcspi200_spi_xfer()
265 if (__nspi_espi_rx(ns, din, rx_bytes) == rx_bytes) { in __atcspi200_spi_xfer()
267 din = (unsigned char *)din + rx_bytes; in __atcspi200_spi_xfer()
H A Dfsl_espi.c244 unsigned int event, rx_bytes; in spi_xfer() local
328 rx_bytes = 4; in spi_xfer()
330 rx_bytes = num_bytes; in spi_xfer()
333 if (fsl_espi_rx(fsl, din, rx_bytes) in spi_xfer()
334 == rx_bytes) { in spi_xfer()
338 + rx_bytes; in spi_xfer()
/openbmc/u-boot/include/linux/
H A Dnetdevice.h32 unsigned long rx_bytes; /* total bytes received */ member
/openbmc/qemu/hw/net/
H A Dxgmac.c133 uint64_t rx_bytes; member
163 VMSTATE_UINT64(rx_bytes, RxTxStats),
369 s->stats.rx_bytes += size; in eth_rx()
H A Dxilinx_axienet.c348 uint64_t rx_bytes; member
472 r = s->stats.rx_bytes >> (32 * (addr & 1)); in enet_read()
827 s->stats.rx_bytes += size; in eth_rx()
/openbmc/u-boot/drivers/net/
H A Dmvgbe.c643 int rx_bytes = 0; in __mvgbe_recv() local
690 rx_bytes = (int)(p_rxdesc_curr->byte_cnt - in __mvgbe_recv()
706 return rx_bytes; in __mvgbe_recv()
H A Dmvneta.c1633 int rx_bytes = 0; in mvneta_recv() local
1659 rx_bytes = rx_desc->data_size - 6; in mvneta_recv()
1676 return rx_bytes; in mvneta_recv()
H A Dmvpp2.c936 u64 rx_bytes; member
5173 int pool, rx_bytes, err; in mvpp2_recv() local
5190 rx_bytes = mvpp2_rxdesc_size_get(port, rx_desc); in mvpp2_recv()
5191 rx_bytes -= MVPP2_MH_SIZE; in mvpp2_recv()
5223 if (rx_bytes <= 0) in mvpp2_recv()
5232 return rx_bytes; in mvpp2_recv()
/openbmc/qemu/qga/
H A Dcommands-posix.c915 long long rx_bytes; in guest_get_network_stats() local
936 &rx_bytes, &rx_packets, &rx_errs, &rx_dropped, in guest_get_network_stats()
942 stats->rx_bytes = rx_bytes; in guest_get_network_stats()
H A Dcommands-win32.c1632 stats->rx_bytes = a_mid_ifrow.InOctets; in guest_get_network_stats()
/openbmc/qemu/include/standard-headers/linux/
H A Dvirtio_net.h487 uint64_t rx_bytes; member
/openbmc/u-boot/include/net/
H A Dncsi-pkt.h248 __be32 rx_bytes; /* Rx bytes */ member
/openbmc/qemu/linux-user/
H A Dfd-trans.c1089 st->rx_bytes = tswap32(st->rx_bytes); in host_to_target_data_link_rtattr()
1122 st64->rx_bytes = tswap64(st64->rx_bytes); in host_to_target_data_link_rtattr()
/openbmc/u-boot/drivers/usb/gadget/
H A Dether.c1579 dev->stats.rx_bytes += req->length; in rx_complete()