Lines Matching defs:netBuf
107 static void EthDrvRecv(struct EthDevice *ethDevice, NetBuf *netBuf)
116 NetDmaCacheInv(NetBufGetAddress(netBuf, E_DATA_BUF), netBuf->len);
117 NetBufPush(netBuf, E_DATA_BUF, netBuf->len);
118 NetIfRxNi(ethDevice->netdev, netBuf);
246 static void HiethSend(struct EthDevice *ethDevice, NetBuf *netBuf)
254 HiethXmitGso(ld, priv, netBuf);
268 NetBuf *netBuf = NULL;
296 netBuf = priv->ram->rxNetbuf[priv->rxRelease];
297 netBuf->len = rlen;
299 EthDrvRecv(ethDevice, netBuf);
337 void EthDrvSend(struct EthDevice *ethDevice, NetBuf *netBuf)
347 (drvSc->funs->send)(ethDevice, netBuf);