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

/xnu-2782.1.97/bsd/net/
H A Dether_inet_pr_module.c175 mbuf_t nextpkt; local
178 for (m = m_list; m; m = nextpkt) {
191 nextpkt = m->m_nextpkt;
H A Dpf_ioctl.c4833 struct mbuf *nextpkt; local
4848 if ((nextpkt = (*mp)->m_nextpkt) != NULL)
4884 if (*mp != NULL && nextpkt != NULL) {
4888 m->m_nextpkt = nextpkt;
4895 *mppn = nextpkt;
/xnu-2782.1.97/bsd/kern/
H A Dkern_control.c605 struct mbuf *nextpkt = m->m_nextpkt; local
613 m = nextpkt;
754 struct mbuf *m, *nextpkt; local
784 for (m = m_list; m != NULL; m = nextpkt) {
785 nextpkt = m->m_nextpkt;
814 m = nextpkt;
H A Dkpi_mbuf.c449 void mbuf_setnextpkt(mbuf_t mbuf, mbuf_t nextpkt) argument
451 mbuf->m_nextpkt = nextpkt;
H A Duipc_socket.c2386 struct mbuf *nextpkt = m->m_nextpkt; local
2414 *prevnextp = nextpkt;
2416 top = nextpkt;
2419 m = nextpkt;
H A Duipc_mbuf.c4277 struct mbuf *nextpkt; local
4292 nextpkt = m->m_nextpkt;
4404 m = nextpkt;
/xnu-2782.1.97/bsd/sys/
H A Dkpi_mbuf.h839 @result The nextpkt.
847 @param nextpkt The new next packet.
849 extern void mbuf_setnextpkt(mbuf_t mbuf, mbuf_t nextpkt);
/xnu-2782.1.97/bsd/netinet6/
H A Dip6_output.c230 struct mbuf *m = m0, *nextpkt; local
238 nextpkt = m->m_nextpkt;
242 if (nextpkt != NULL)
243 m_freem_list(nextpkt);
246 m = nextpkt;

Completed in 129 milliseconds