Searched refs:nextpkt (Results 1 - 6 of 6) sorted by relevance

/darwin-on-arm/xnu/bsd/net/
H A Dether_inet_pr_module.c176 mbuf_t nextpkt; local
179 for (m = m_list; m; m = nextpkt) {
192 nextpkt = m->m_nextpkt;
H A Dpf_ioctl.c4731 struct mbuf *nextpkt; local
4745 if ((nextpkt = (*mp)->m_nextpkt) != NULL)
4765 if (*mp != NULL && nextpkt != NULL) {
4769 m->m_nextpkt = nextpkt;
4776 *mppn = nextpkt;
/darwin-on-arm/xnu/bsd/sys/
H A Dkpi_mbuf.h841 @result The nextpkt.
849 @param nextpkt The new next packet.
851 extern void mbuf_setnextpkt(mbuf_t mbuf, mbuf_t nextpkt);
/darwin-on-arm/xnu/bsd/kern/
H A Dkpi_mbuf.c447 void mbuf_setnextpkt(mbuf_t mbuf, mbuf_t nextpkt) argument
449 mbuf->m_nextpkt = nextpkt;
H A Duipc_mbuf.c4139 struct mbuf *nextpkt; local
4154 nextpkt = m->m_nextpkt;
4263 m = nextpkt;
/darwin-on-arm/xnu/bsd/netinet6/
H A Dip6_output.c238 struct mbuf *m = m0, *nextpkt; local
246 nextpkt = m->m_nextpkt;
250 if (nextpkt)
251 m_freem_list(nextpkt);
254 m = nextpkt;

Completed in 54 milliseconds