| /freebsd-13.1/sys/netinet/ |
| H A D | tcp_log_buf.h | 303 #define TCP_LOG_EVENT_VERBOSE(tp, th, rxbuf, txbuf, eventid, errornum, len, stackinfo, th_hostorder… argument 306 tcp_log_event_(tp, th, rxbuf, txbuf, eventid, \ 332 #define TCP_LOG_EVENT(tp, th, rxbuf, txbuf, eventid, errornum, len, stackinfo, th_hostorder) \ argument 335 TCP_LOG_EVENT_VERBOSE(tp, th, rxbuf, txbuf, \ 339 tcp_log_event_(tp, th, rxbuf, txbuf, eventid, \ 344 #define TCP_LOG_EVENTP(tp, th, rxbuf, txbuf, eventid, errornum, len, stackinfo, th_hostorder, tv) \ argument 347 tcp_log_event_(tp, th, rxbuf, txbuf, eventid, \ 357 struct tcp_log_buffer *tcp_log_event_(struct tcpcb *tp, struct tcphdr *th, struct sockbuf *rxbuf, 376 tcp_log_event_(struct tcpcb *tp, struct tcphdr *th, struct sockbuf *rxbuf, in tcp_log_event_() argument
|
| H A D | tcp_log_buf.c | 1520 tcp_log_event_(struct tcpcb *tp, struct tcphdr *th, struct sockbuf *rxbuf, in tcp_log_event_() argument 1658 if (rxbuf != NULL) { in tcp_log_event_() 1660 log_buf->tlb_rxbuf.tls_sb_acc = rxbuf->sb_acc; in tcp_log_event_() 1661 log_buf->tlb_rxbuf.tls_sb_ccc = rxbuf->sb_ccc; in tcp_log_event_()
|
| /freebsd-13.1/sys/arm/freescale/imx/ |
| H A D | imx_spi.c | 136 uint8_t *rxbuf; member 279 sc->rxbuf[sc->rxidx++] = (uint8_t)RD4(sc, ECSPI_RXDATA); in spi_empty_rxfifo() 374 spi_xfer_buf(struct spi_softc *sc, void *rxbuf, void *txbuf, uint32_t len) in spi_xfer_buf() argument 381 rxbuf, txbuf, len); in spi_xfer_buf() 387 sc->rxbuf = rxbuf; in spi_xfer_buf()
|
| /freebsd-13.1/sys/arm64/rockchip/ |
| H A D | rk_spi.c | 117 uint8_t *rxbuf; member 219 sc->rxbuf[sc->rxidx++] = (uint8_t)RK_SPI_READ_4(sc, RK_SPI_RXDR); in rk_spi_empty_rxfifo() 241 rk_spi_xfer_buf(struct rk_spi_softc *sc, void *rxbuf, void *txbuf, uint32_t len) in rk_spi_xfer_buf() argument 248 sc->rxbuf = rxbuf; in rk_spi_xfer_buf()
|
| /freebsd-13.1/sys/riscv/sifive/ |
| H A D | sifive_spi.c | 185 sfspi_xfer_buf(struct sfspi_softc *sc, uint8_t *rxbuf, uint8_t *txbuf, in sfspi_xfer_buf() argument 191 KASSERT(rxbuf != NULL, ("RX buffer cannot be NULL")); in sfspi_xfer_buf() 198 sfspi_rx(sc, rxbuf, bytes); in sfspi_xfer_buf() 199 rxbuf += bytes; in sfspi_xfer_buf()
|
| /freebsd-13.1/sys/arm/allwinner/ |
| H A D | aw_spi.c | 153 uint8_t *rxbuf; member 423 sc->rxbuf[sc->rxcnt++] = val; in aw_spi_read_rxfifo() 468 aw_spi_xfer(struct aw_spi_softc *sc, void *rxbuf, void *txbuf, uint32_t txlen, uint32_t rxlen) in aw_spi_xfer() argument 473 sc->rxbuf = rxbuf; in aw_spi_xfer()
|
| /freebsd-13.1/sys/dev/neta/ |
| H A D | if_mvneta.c | 1218 struct mvneta_buf *rxbuf; in mvneta_ring_alloc_rx_queue() local 1248 rxbuf = &rx->rxbuf[i]; in mvneta_ring_alloc_rx_queue() 1249 rxbuf->dmap = dmap; in mvneta_ring_alloc_rx_queue() 1250 rxbuf->m = NULL; in mvneta_ring_alloc_rx_queue() 1499 rxbuf = &rx->rxbuf[i]; in mvneta_ring_flush_rx_queue() 3049 rxbuf = &rx->rxbuf[rx->dma]; in mvneta_rx_queue() 3050 m = rxbuf->m; in mvneta_rx_queue() 3051 rxbuf->m = NULL; in mvneta_rx_queue() 3152 m_freem(rxbuf->m); in mvneta_rx_buf_free() 3180 rxbuf = &rx->rxbuf[rx->cpu]; in mvneta_rx_queue_refill() [all …]
|
| H A D | if_mvnetavar.h | 119 struct mvneta_buf rxbuf[MVNETA_RX_RING_CNT]; member
|
| /freebsd-13.1/tools/tools/netmap/ |
| H A D | bridge.c | 116 char *rxbuf = NETMAP_BUF(rxring, rs->buf_idx); in rings_move() local 118 nm_pkt_copy(rxbuf, txbuf, ts->len); in rings_move()
|
| /freebsd-13.1/contrib/bsnmp/snmpd/ |
| H A D | action.c | 647 value->v.integer = snmpd.rxbuf; in op_snmpd_config() 674 ctx->scratch->int1 = snmpd.rxbuf; in op_snmpd_config() 678 snmpd.rxbuf = value->v.integer; in op_snmpd_config() 712 snmpd.rxbuf = ctx->scratch->int1; in op_snmpd_config()
|
| H A D | snmpd.h | 237 u_int32_t rxbuf; member
|
| H A D | main.c | 258 if ((buf = malloc(tx ? snmpd.txbuf : snmpd.rxbuf)) == NULL) { in buf_alloc() 275 return (tx ? snmpd.txbuf : snmpd.rxbuf); in buf_size()
|
| /freebsd-13.1/tools/regression/netinet/ipmulticast/ |
| H A D | ipmulticast.c | 661 char rxbuf[RXBUFSIZE]; in recv_loop_with_match() local 698 len = recvfrom(sock, rxbuf, RXBUFSIZE, 0, &from.sa, in recv_loop_with_match()
|
| /freebsd-13.1/contrib/libpcap/ |
| H A D | pcap-dos.c | 869 static char rxbuf [ETH_MAX+100]; /* rx-buffer with some margin */ variable 879 memcpy (rxbuf, buf, pcap->caplen); in watt32_recv_hook() 897 return (void*) &rxbuf; in pcap_recv_hook()
|
| /freebsd-13.1/sys/dev/bwi/ |
| H A D | if_bwi.c | 2498 struct bwi_rxbuf *rxbuf = &rbd->rbd_buf[buf_idx]; in bwi_newbuf() local 2541 bus_dmamap_unload(sc->sc_buf_dtag, rxbuf->rb_dmap); in bwi_newbuf() 2542 rxbuf->rb_mbuf = m; in bwi_newbuf() 2543 rxbuf->rb_paddr = paddr; in bwi_newbuf() 2548 map = rxbuf->rb_dmap; in bwi_newbuf() 2549 rxbuf->rb_dmap = rbd->rbd_tmp_dmap; in bwi_newbuf() 2556 hdr = mtod(rxbuf->rb_mbuf, struct bwi_rxbuf_hdr *); in bwi_newbuf() 2558 bus_dmamap_sync(sc->sc_buf_dtag, rxbuf->rb_dmap, BUS_DMASYNC_PREWRITE); in bwi_newbuf() 2563 sc->sc_setup_rxdesc(sc, buf_idx, rxbuf->rb_paddr, in bwi_newbuf() 2564 rxbuf->rb_mbuf->m_len - sizeof(*hdr)); in bwi_newbuf()
|
| /freebsd-13.1/sys/contrib/octeon-sdk/ |
| H A D | cvmx-sriox-defs.h | 822 uint64_t rxbuf : 2; /**< Incoming SRIO MAC Buffer. */ member 828 uint64_t rxbuf : 2; 866 uint64_t rxbuf : 2; /**< Incoming SRIO MAC Buffer. */ member 873 uint64_t rxbuf : 2; 909 uint64_t rxbuf : 2; /**< Incoming SRIO MAC Buffer. */ member 915 uint64_t rxbuf : 2;
|
| /freebsd-13.1/sys/dev/malo/ |
| H A D | if_malo.c | 74 SYSCTL_INT(_hw_malo, OID_AUTO, rxbuf, CTLFLAG_RWTUN, &malo_rxbuf,
|
| /freebsd-13.1/sys/dev/mwl/ |
| H A D | if_mwl.c | 194 SYSCTL_INT(_hw_mwl, OID_AUTO, rxbuf, CTLFLAG_RWTUN, &mwl_rxbuf,
|
| /freebsd-13.1/sys/dev/ath/ |
| H A D | if_ath.c | 246 SYSCTL_INT(_hw_ath, OID_AUTO, rxbuf, CTLFLAG_RWTUN, &ath_rxbuf,
|