Searched refs:new_mbuf (Results 1 - 2 of 2) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/bsd/sys/
H A Dkpi_mbuf.h623 @param new_mbuf Upon success, the newly allocated mbuf.
627 mbuf_how_t how, mbuf_t* new_mbuf);
637 @param new_mbuf Upon success, the newly allocated mbuf.
640 errno_t mbuf_dup(const mbuf_t src, mbuf_how_t how, mbuf_t* new_mbuf);
664 @param new_mbuf Upon success, the second half of the split mbuf
671 mbuf_how_t how, mbuf_t* new_mbuf);
/macosx-10.5.8/xnu-1228.15.4/bsd/kern/
H A Dkpi_mbuf.c283 mbuf_how_t how, mbuf_t *new_mbuf)
286 *new_mbuf = m_copym(src, offset, len, how);
288 return (*new_mbuf == NULL) ? ENOMEM : 0;
291 errno_t mbuf_dup(const mbuf_t src, mbuf_how_t how, mbuf_t *new_mbuf) argument
293 /* Must set *new_mbuf to NULL in failure case */
294 *new_mbuf = m_dup(src, how);
296 return (*new_mbuf == NULL) ? ENOMEM : 0;
308 mbuf_how_t how, mbuf_t *new_mbuf)
310 /* Must set *new_mbuf to NULL in failure case */
311 *new_mbuf
282 mbuf_copym(const mbuf_t src, size_t offset, size_t len, mbuf_how_t how, mbuf_t *new_mbuf) argument
307 mbuf_split(mbuf_t src, size_t offset, mbuf_how_t how, mbuf_t *new_mbuf) argument
[all...]

Completed in 31 milliseconds