Lines Matching full:txc
1117 struct ste_chain *txc; in ste_dma_alloc() local
1259 txc = &sc->ste_cdata.ste_tx_chain[i]; in ste_dma_alloc()
1260 txc->ste_ptr = NULL; in ste_dma_alloc()
1261 txc->ste_mbuf = NULL; in ste_dma_alloc()
1262 txc->ste_next = NULL; in ste_dma_alloc()
1263 txc->ste_phys = 0; in ste_dma_alloc()
1264 txc->ste_map = NULL; in ste_dma_alloc()
1266 &txc->ste_map); in ste_dma_alloc()
1302 struct ste_chain *txc; in ste_dma_free() local
1309 txc = &sc->ste_cdata.ste_tx_chain[i]; in ste_dma_free()
1310 if (txc->ste_map != NULL) { in ste_dma_free()
1312 txc->ste_map); in ste_dma_free()
1313 txc->ste_map = NULL; in ste_dma_free()
1804 ste_encap(struct ste_softc *sc, struct mbuf **m_head, struct ste_chain *txc) in ste_encap() argument
1816 txc->ste_map, *m_head, txsegs, &nsegs, 0); in ste_encap()
1826 txc->ste_map, *m_head, txsegs, &nsegs, 0); in ste_encap()
1839 bus_dmamap_sync(sc->ste_cdata.ste_tx_tag, txc->ste_map, in ste_encap()
1842 desc = txc->ste_ptr; in ste_encap()
1859 txc->ste_mbuf = *m_head; in ste_encap()