Lines Matching defs:controlp
168 struct mbuf **controlp, int *flagsp);
173 struct mbuf **controlp, int flags);
2717 struct uio *uio, struct mbuf **mp, struct mbuf **controlp, int *flagsp)
2858 * perform externalization (or freeing if controlp == NULL).
2892 if (controlp != NULL) {
2893 *controlp = m_copym(m, 0, m->m_len,
2895 controlp = &(*controlp)->m_next;
2916 (cm, controlp, flags);
2918 } else if (controlp != NULL)
2919 *controlp = cm;
2922 if (controlp != NULL) {
2923 while (*controlp != NULL)
2924 controlp = &(*controlp)->m_next;
3199 struct mbuf **mp, struct mbuf **controlp, int *flagsp)
3205 if (controlp != NULL)
3206 *controlp = NULL;
3220 error = soreceive_generic_locked(so, psa, uio, mp, controlp, flagsp);
3231 struct mbuf **controlp, int flags)
3402 struct mbuf **mp0, struct mbuf **controlp, int *flagsp)
3418 if (controlp != NULL)
3419 *controlp = NULL;
3434 return (soreceive_generic(so, psa, uio, mp0, controlp,
3448 return (soreceive_generic(so, psa, uio, mp0, controlp,
3452 error = soreceive_stream_locked(so, sb, psa, uio, mp0, controlp, flags);
3465 struct mbuf **mp0, struct mbuf **controlp, int *flagsp)
3475 if (controlp != NULL)
3476 *controlp = NULL;
3487 return (soreceive_generic(so, psa, uio, mp0, controlp,
3583 * protocol to perform externalization (or freeing if controlp ==
3603 (cm, controlp, flags);
3604 } else if (controlp != NULL)
3605 *controlp = cm;
3608 if (controlp != NULL) {
3609 while (*controlp != NULL)
3610 controlp = &(*controlp)->m_next;
3644 struct mbuf **mp0, struct mbuf **controlp, int *flagsp)
3649 error = so->so_proto->pr_soreceive(so, psa, uio, mp0, controlp, flagsp);