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

/vbox/src/VBox/Devices/Network/slirp/bsd/kern/
H A Duipc_mbuf.c904 m_copydata(const struct mbuf *m, int off, int len, caddr_t cp) function
908 KASSERT(off >= 0, ("m_copydata, negative off %d", off));
909 KASSERT(len >= 0, ("m_copydata, negative len %d", len));
911 KASSERT(m != NULL, ("m_copydata, offset > size of mbuf chain"));
918 KASSERT(m != NULL, ("m_copydata, length > size of mbuf chain"));
1745 m_copydata(m0, progress, length, mtod(m_new, caddr_t));
1950 m_copydata(m0, progress, fraglen, mtod(m_new, caddr_t));

Completed in 928 milliseconds