Searched defs:m_copydata (Results 1 - 1 of 1) sorted by path

/external/chromium_org/third_party/usrsctp/usrsctplib/
H A Duser_mbuf.c793 m_copydata(m, off, len, mtod(n, caddr_t));
891 * we need to use m_copydata() to get data from <n->m_next, 0>.
895 m_copydata(n->m_next, 0, tlen, mtod(n, caddr_t) + n->m_len);
930 m_copydata(n->m_next, 0, tlen, mtod(o, caddr_t) + o->m_len);
1217 m_copydata(const struct mbuf *m, int off, int len, caddr_t cp) function
1221 KASSERT(off >= 0, ("m_copydata, negative off %d", off));
1222 KASSERT(len >= 0, ("m_copydata, negative len %d", len));
1224 KASSERT(m != NULL, ("m_copydata, offset > size of mbuf chain"));
1231 KASSERT(m != NULL, ("m_copydata, length > size of mbuf chain"));

Completed in 490 milliseconds