Home
last modified time | relevance | path

Searched refs:txbuf (Results 1 – 19 of 19) sorted by relevance

/freebsd/sys/contrib/dev/athk/ath10k/
H A Dhtt_tx.c229 if (!htt->txbuf.vaddr_txbuff_32) in ath10k_htt_tx_free_cont_txbuf_32()
232 size = htt->txbuf.size; in ath10k_htt_tx_free_cont_txbuf_32()
233 dma_free_coherent(ar->dev, size, htt->txbuf.vaddr_txbuff_32, in ath10k_htt_tx_free_cont_txbuf_32()
234 htt->txbuf.paddr); in ath10k_htt_tx_free_cont_txbuf_32()
235 htt->txbuf.vaddr_txbuff_32 = NULL; in ath10k_htt_tx_free_cont_txbuf_32()
246 htt->txbuf.vaddr_txbuff_32 = dma_alloc_coherent(ar->dev, size, in ath10k_htt_tx_alloc_cont_txbuf_32()
247 &htt->txbuf.paddr, in ath10k_htt_tx_alloc_cont_txbuf_32()
249 if (!htt->txbuf.vaddr_txbuff_32) in ath10k_htt_tx_alloc_cont_txbuf_32()
252 htt->txbuf.size = size; in ath10k_htt_tx_alloc_cont_txbuf_32()
262 if (!htt->txbuf.vaddr_txbuff_64) in ath10k_htt_tx_free_cont_txbuf_64()
[all …]
H A Dhtt.h1927 } txbuf; member
/freebsd/sys/dev/irdma/
H A Dirdma_puda.c1297 struct irdma_puda_buf *txbuf, in irdma_ieq_copy_to_txbuf() argument
1301 void *mem2 = (u8 *)txbuf->mem.va + txbuf_offset; in irdma_ieq_copy_to_txbuf()
1313 struct irdma_puda_buf *txbuf) in irdma_ieq_setup_tx_buf() argument
1315 txbuf->tcphlen = buf->tcphlen; in irdma_ieq_setup_tx_buf()
1316 txbuf->ipv4 = buf->ipv4; in irdma_ieq_setup_tx_buf()
1319 txbuf->hdrlen = txbuf->tcphlen; in irdma_ieq_setup_tx_buf()
1320 irdma_ieq_copy_to_txbuf(buf, txbuf, IRDMA_TCP_OFFSET, 0, in irdma_ieq_setup_tx_buf()
1321 txbuf->hdrlen); in irdma_ieq_setup_tx_buf()
1323 txbuf->maclen = buf->maclen; in irdma_ieq_setup_tx_buf()
1324 txbuf->hdrlen = buf->hdrlen; in irdma_ieq_setup_tx_buf()
[all …]
/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, \
566 struct sockbuf *txbuf, uint8_t eventid, int errornum, uint32_t len,
588 struct sockbuf *txbuf, uint8_t eventid, int errornum, uint32_t len, in tcp_log_event() argument
H A Dtcp_log_buf.c1675 struct sockbuf *txbuf, uint8_t eventid, int errornum, uint32_t len, in tcp_log_event() argument
1833 if (txbuf != NULL) { in tcp_log_event()
1835 log_buf->tlb_txbuf.tls_sb_acc = txbuf->sb_acc; in tcp_log_event()
1836 log_buf->tlb_txbuf.tls_sb_ccc = txbuf->sb_ccc; in tcp_log_event()
/freebsd/sys/arm/freescale/imx/
H A Dimx_spi.c137 uint8_t *txbuf; member
287 WR4(sc, ECSPI_TXDATA, sc->txbuf[sc->txidx++]); in spi_fill_txfifo()
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()
388 sc->txbuf = txbuf; in spi_xfer_buf()
/freebsd/sys/dev/neta/
H A Dif_mvneta.c1297 struct mvneta_buf *txbuf; in mvneta_ring_dealloc_tx_queue() local
1318 txbuf = &tx->txbuf[i]; in mvneta_ring_dealloc_tx_queue()
1319 if (txbuf->dmap != NULL) { in mvneta_ring_dealloc_tx_queue()
1321 txbuf->dmap); in mvneta_ring_dealloc_tx_queue()
1406 struct mvneta_buf *txbuf; in mvneta_ring_init_tx_queue() local
1416 txbuf = &tx->txbuf[i]; in mvneta_ring_init_tx_queue()
1417 txbuf->m = NULL; in mvneta_ring_init_tx_queue()
1420 &txbuf->dmap); in mvneta_ring_init_tx_queue()
1448 struct mvneta_buf *txbuf; in mvneta_ring_flush_tx_queue() local
1456 txbuf = &tx->txbuf[i]; in mvneta_ring_flush_tx_queue()
[all …]
H A Dif_mvnetavar.h150 struct mvneta_buf txbuf[MVNETA_TX_RING_CNT]; member
/freebsd/sys/dev/spibus/controller/rockchip/
H A Drk_spi.c115 uint8_t *txbuf; member
226 RK_SPI_WRITE_4(sc, RK_SPI_TXDR, sc->txbuf[sc->txidx++]); in rk_spi_fill_txfifo()
235 rk_spi_xfer_buf(struct rk_spi_softc *sc, void *rxbuf, void *txbuf, uint32_t len) in rk_spi_xfer_buf() argument
245 sc->txbuf = txbuf; 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
189 KASSERT(txbuf != NULL, ("TX buffer cannot be NULL")); in sfspi_xfer_buf()
193 sfspi_tx(sc, txbuf, bytes); in sfspi_xfer_buf()
194 txbuf += bytes; in sfspi_xfer_buf()
/freebsd/sys/dev/spibus/controller/allwinner/
H A Daw_spi.c150 uint8_t *txbuf; member
393 AW_SPI_WRITE_1(sc, AW_SPI_TXD, sc->txbuf[sc->txcnt++]); in aw_spi_fill_txfifo()
462 aw_spi_xfer(struct aw_spi_softc *sc, void *rxbuf, void *txbuf, uint32_t txlen, uint32_t rxlen) in aw_spi_xfer() argument
469 sc->txbuf = txbuf; in aw_spi_xfer()
/freebsd/contrib/ntp/ntpd/
H A Drefclock_parse.c5050 struct txbuf struct
5056 void sendcmd (struct txbuf *buf, int c); argument
5057 void sendbyte (struct txbuf *buf, int b);
5058 void sendetx (struct txbuf *buf, struct parseunit *parse);
5059 void sendint (struct txbuf *buf, int a);
5060 void sendflt (struct txbuf *buf, double a);
5064 struct txbuf *buf, in sendcmd()
5073 void sendcmd (struct txbuf *buf, int c);
5074 void sendbyte (struct txbuf *buf, int b);
5075 void sendetx (struct txbuf *buf, struct parseunit *parse);
[all …]
/freebsd/tools/tools/netmap/
H A Dbridge.c115 char *txbuf = NETMAP_BUF(txring, ts->buf_idx); in rings_move() local
116 nm_pkt_copy(rxbuf, txbuf, ts->len); in rings_move()
/freebsd/contrib/bsnmp/snmpd/
H A Daction.c644 value->v.integer = snmpd.txbuf; in op_snmpd_config()
666 ctx->scratch->int1 = snmpd.txbuf; in op_snmpd_config()
670 snmpd.txbuf = value->v.integer; in op_snmpd_config()
715 snmpd.txbuf = ctx->scratch->int1; in op_snmpd_config()
H A Dsnmpd.h234 u_int32_t txbuf; 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()
289 resp_b.asn_len = snmpd.txbuf; in snmp_output()
669 resp_b.asn_len = snmpd.txbuf; in snmp_input_finish()
745 resp_b.asn_len = snmpd.txbuf; in snmp_input_finish()
/freebsd/sys/dev/malo/
H A Dif_malo.c75 SYSCTL_INT(_hw_malo, OID_AUTO, txbuf, CTLFLAG_RWTUN, &malo_txbuf,
/freebsd/sys/dev/mwl/
H A Dif_mwl.c195 SYSCTL_INT(_hw_mwl, OID_AUTO, txbuf, CTLFLAG_RWTUN, &mwl_txbuf,
/freebsd/sys/dev/ath/
H A Dif_ath.c248 SYSCTL_INT(_hw_ath, OID_AUTO, txbuf, CTLFLAG_RWTUN, &ath_txbuf,