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

/xnu-2422.115.4/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.c4796 struct mbuf *nextpkt; local
4810 if ((nextpkt = (*mp)->m_nextpkt) != NULL)
4830 if (*mp != NULL && nextpkt != NULL) {
4834 m->m_nextpkt = nextpkt;
4841 *mppn = nextpkt;
/xnu-2422.115.4/bsd/sys/
H A Dkpi_mbuf.h842 @result The nextpkt.
850 @param nextpkt The new next packet.
852 extern void mbuf_setnextpkt(mbuf_t mbuf, mbuf_t nextpkt);
/xnu-2422.115.4/bsd/kern/
H A Dkpi_mbuf.c449 void mbuf_setnextpkt(mbuf_t mbuf, mbuf_t nextpkt) argument
451 mbuf->m_nextpkt = nextpkt;
H A Duipc_mbuf.c4246 struct mbuf *nextpkt; local
4261 nextpkt = m->m_nextpkt;
4373 m = nextpkt;
/xnu-2422.115.4/bsd/netinet6/
H A Dip6_output.c226 struct mbuf *m = m0, *nextpkt; local
234 nextpkt = m->m_nextpkt;
238 if (nextpkt != NULL)
239 m_freem_list(nextpkt);
242 m = nextpkt;

Completed in 101 milliseconds