Home
last modified time | relevance | path

Searched refs:rxbuf (Results 1 – 18 of 18) sorted by relevance

/freebsd/sys/netinet/
H A Dtcp_log_buf.h474 #define TCP_LOG_EVENT_VERBOSE(tp, th, rxbuf, txbuf, eventid, errornum, len, stackinfo, th_hostorder… argument
477 tcp_log_event(tp, th, rxbuf, txbuf, eventid, \
540 #define TCP_LOG_EVENT(tp, th, rxbuf, txbuf, eventid, errornum, len, stackinfo, th_hostorder) \ argument
543 TCP_LOG_EVENT_VERBOSE(tp, th, rxbuf, txbuf, \
547 tcp_log_event(tp, th, rxbuf, txbuf, eventid, \
552 #define TCP_LOG_EVENTP(tp, th, rxbuf, txbuf, eventid, errornum, len, stackinfo, th_hostorder, tv) \ argument
555 tcp_log_event(tp, th, rxbuf, txbuf, eventid, \
565 struct tcp_log_buffer *tcp_log_event(struct tcpcb *tp, struct tcphdr *th, struct sockbuf *rxbuf,
587 tcp_log_event(struct tcpcb *tp, struct tcphdr *th, struct sockbuf *rxbuf, in tcp_log_event() argument
H A Dtcp_log_buf.c1674 tcp_log_event(struct tcpcb *tp, struct tcphdr *th, struct sockbuf *rxbuf, in tcp_log_event() argument
1824 if (rxbuf != NULL) { in tcp_log_event()
1826 log_buf->tlb_rxbuf.tls_sb_acc = rxbuf->sb_acc; in tcp_log_event()
1827 log_buf->tlb_rxbuf.tls_sb_ccc = rxbuf->sb_ccc; in tcp_log_event()
/freebsd/sys/arm/freescale/imx/
H A Dimx_spi.c134 uint8_t *rxbuf; member
277 sc->rxbuf[sc->rxidx++] = (uint8_t)RD4(sc, ECSPI_RXDATA); in spi_empty_rxfifo()
372 spi_xfer_buf(struct spi_softc *sc, void *rxbuf, void *txbuf, uint32_t len) in spi_xfer_buf() argument
379 rxbuf, txbuf, len); in spi_xfer_buf()
385 sc->rxbuf = rxbuf; in spi_xfer_buf()
/freebsd/sys/dev/spibus/controller/rockchip/
H A Drk_spi.c113 uint8_t *rxbuf; member
215 sc->rxbuf[sc->rxidx++] = (uint8_t)RK_SPI_READ_4(sc, RK_SPI_RXDR); in rk_spi_empty_rxfifo()
235 rk_spi_xfer_buf(struct rk_spi_softc *sc, void *rxbuf, void *txbuf, uint32_t len) in rk_spi_xfer_buf() argument
242 sc->rxbuf = rxbuf; in rk_spi_xfer_buf()
/freebsd/sys/riscv/sifive/
H A Dsifive_spi.c182 sfspi_xfer_buf(struct sfspi_softc *sc, uint8_t *rxbuf, uint8_t *txbuf, in sfspi_xfer_buf() argument
188 KASSERT(rxbuf != NULL, ("RX buffer cannot be NULL")); in sfspi_xfer_buf()
195 sfspi_rx(sc, rxbuf, bytes); in sfspi_xfer_buf()
196 rxbuf += bytes; in sfspi_xfer_buf()
/freebsd/sys/dev/spibus/controller/allwinner/
H A Daw_spi.c148 uint8_t *rxbuf; member
418 sc->rxbuf[sc->rxcnt++] = val; in aw_spi_read_rxfifo()
463 aw_spi_xfer(struct aw_spi_softc *sc, void *rxbuf, void *txbuf, uint32_t txlen, uint32_t rxlen) in aw_spi_xfer() argument
468 sc->rxbuf = rxbuf; in aw_spi_xfer()
/freebsd/sys/dev/neta/
H A Dif_mvneta.c1209 struct mvneta_buf *rxbuf; in mvneta_ring_alloc_rx_queue() local
1239 rxbuf = &rx->rxbuf[i]; in mvneta_ring_alloc_rx_queue()
1240 rxbuf->dmap = dmap; in mvneta_ring_alloc_rx_queue()
1241 rxbuf->m = NULL; in mvneta_ring_alloc_rx_queue()
1484 rxbuf = &rx->rxbuf[i]; in mvneta_ring_flush_rx_queue()
3033 rxbuf = &rx->rxbuf[rx->dma]; in mvneta_rx_queue()
3034 m = rxbuf->m; in mvneta_rx_queue()
3035 rxbuf->m = NULL; in mvneta_rx_queue()
3136 m_freem(rxbuf->m); in mvneta_rx_buf_free()
3164 rxbuf = &rx->rxbuf[rx->cpu]; in mvneta_rx_queue_refill()
[all …]
H A Dif_mvnetavar.h117 struct mvneta_buf rxbuf[MVNETA_RX_RING_CNT]; member
/freebsd/tools/tools/netmap/
H A Dbridge.c114 char *rxbuf = NETMAP_BUF(rxring, rs->buf_idx); in rings_move() local
116 nm_pkt_copy(rxbuf, txbuf, ts->len); in rings_move()
/freebsd/contrib/bsnmp/snmpd/
H A Daction.c647 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 Dsnmpd.h237 u_int32_t rxbuf; member
H A Dmain.c258 if ((buf = malloc(tx ? snmpd.txbuf : snmpd.rxbuf)) == NULL) { in buf_alloc()
275 return (tx ? snmpd.txbuf : snmpd.rxbuf); in buf_size()
/freebsd/tools/regression/netinet/ipmulticast/
H A Dipmulticast.c658 char rxbuf[RXBUFSIZE]; in recv_loop_with_match() local
695 len = recvfrom(sock, rxbuf, RXBUFSIZE, 0, &from.sa, in recv_loop_with_match()
/freebsd/contrib/libpcap/
H A Dpcap-dos.c885 static char rxbuf [ETH_MAX+100]; /* rx-buffer with some margin */ variable
895 memcpy (rxbuf, buf, pcap->caplen); in watt32_recv_hook()
913 return (void*) &rxbuf; in pcap_recv_hook()
/freebsd/sys/dev/bwi/
H A Dif_bwi.c2493 struct bwi_rxbuf *rxbuf = &rbd->rbd_buf[buf_idx]; in bwi_newbuf() local
2536 bus_dmamap_unload(sc->sc_buf_dtag, rxbuf->rb_dmap); in bwi_newbuf()
2537 rxbuf->rb_mbuf = m; in bwi_newbuf()
2538 rxbuf->rb_paddr = paddr; in bwi_newbuf()
2543 map = rxbuf->rb_dmap; in bwi_newbuf()
2544 rxbuf->rb_dmap = rbd->rbd_tmp_dmap; in bwi_newbuf()
2551 hdr = mtod(rxbuf->rb_mbuf, struct bwi_rxbuf_hdr *); in bwi_newbuf()
2553 bus_dmamap_sync(sc->sc_buf_dtag, rxbuf->rb_dmap, BUS_DMASYNC_PREWRITE); in bwi_newbuf()
2558 sc->sc_setup_rxdesc(sc, buf_idx, rxbuf->rb_paddr, in bwi_newbuf()
2559 rxbuf->rb_mbuf->m_len - sizeof(*hdr)); in bwi_newbuf()
/freebsd/sys/dev/malo/
H A Dif_malo.c69 SYSCTL_INT(_hw_malo, OID_AUTO, rxbuf, CTLFLAG_RWTUN, &malo_rxbuf,
/freebsd/sys/dev/mwl/
H A Dif_mwl.c192 SYSCTL_INT(_hw_mwl, OID_AUTO, rxbuf, CTLFLAG_RWTUN, &mwl_rxbuf,
/freebsd/sys/dev/ath/
H A Dif_ath.c245 SYSCTL_INT(_hw_ath, OID_AUTO, rxbuf, CTLFLAG_RWTUN, &ath_rxbuf,