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

/xnu-2782.1.97/bsd/netinet6/
H A Dipcomp_output.c95 * m nexthdrp mprev md
114 struct mbuf *mprev; local
185 for (mprev = m; mprev && mprev->m_next != md; mprev = mprev->m_next)
187 if (mprev == NULL || mprev->m_next != md) {
196 mprev
[all...]
H A Dipcomp_core.c176 struct mbuf *mprev; local
220 for (mprev = m; mprev && mprev->m_next != md; mprev = mprev->m_next)
222 if (!mprev)
345 mprev->m_next = n0;
H A Dah_output.c407 struct mbuf *mprev; local
427 for (mprev = m; mprev && mprev->m_next != md; mprev = mprev->m_next)
429 if (!mprev || mprev->m_next != md) {
450 mprev->m_next = mah;
H A Desp_output.c223 * m nexthdrp mprev md
242 struct mbuf *mprev; local
357 for (mprev = m; mprev && mprev->m_next != md; mprev = mprev->m_next)
359 if (mprev == NULL || mprev->m_next != md) {
391 mprev
[all...]
H A Dipsec.c3345 struct mbuf *mprev)
3373 error = esp6_output(state->m, nexthdrp, mprev->m_next, sav);
3380 error = ah6_output(state->m, nexthdrp, mprev->m_next, sav);
3383 error = ipcomp6_output(state->m, nexthdrp, mprev->m_next, sav);
3417 struct mbuf *mprev,
3437 if (!mprev)
3438 panic("mprev == NULL in ipsec6_output_trans");
3523 if ((error = ipsec6_output_trans_internal(state, sav, nexthdrp, mprev)) != 0) {
3954 ipsec6_interface_output(struct ipsec_output_state *state, ifnet_t interface, u_char *nexthdrp, struct mbuf *mprev) argument
3967 if (!mprev)
3341 ipsec6_output_trans_internal( struct ipsec_output_state *state, struct secasvar *sav, u_char *nexthdrp, struct mbuf *mprev) argument
3414 ipsec6_output_trans( struct ipsec_output_state *state, u_char *nexthdrp, struct mbuf *mprev, struct secpolicy *sp, __unused int flags, int *tun) argument
[all...]
H A Dip6_output.c275 struct mbuf *m, *mprev; local
671 * "mprev" points to an extension header prior to esp.
674 mprev = m;
678 * much easier. the goal here is to make mprev point the
682 * m and mprev will point to IPv6 header.
711 * m will point to IPv6 header. mprev will point to the
714 MAKE_CHAIN(exthdrs.ip6e_hbh, mprev, nexthdrp, IPPROTO_HOPOPTS);
715 MAKE_CHAIN(exthdrs.ip6e_dest1, mprev, nexthdrp, IPPROTO_DSTOPTS);
716 MAKE_CHAIN(exthdrs.ip6e_rthdr, mprev, nexthdrp, IPPROTO_ROUTING);
801 error = ipsec6_output_trans(&ipsec_state, nexthdrp, mprev,
[all...]

Completed in 77 milliseconds