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

/darwin-on-arm/xnu/bsd/kern/
H A Dkpi_mbuf.c302 mbuf_how_t how, mbuf_t *new_mbuf)
305 *new_mbuf = m_copym(src, offset, len, how);
307 return (*new_mbuf == NULL) ? ENOMEM : 0;
310 errno_t mbuf_dup(const mbuf_t src, mbuf_how_t how, mbuf_t *new_mbuf) argument
312 /* Must set *new_mbuf to NULL in failure case */
313 *new_mbuf = m_dup(src, how);
315 return (*new_mbuf == NULL) ? ENOMEM : 0;
327 mbuf_how_t how, mbuf_t *new_mbuf)
329 /* Must set *new_mbuf to NULL in failure case */
330 *new_mbuf
301 mbuf_copym(const mbuf_t src, size_t offset, size_t len, mbuf_how_t how, mbuf_t *new_mbuf) argument
326 mbuf_split(mbuf_t src, size_t offset, mbuf_how_t how, mbuf_t *new_mbuf) argument
[all...]
/darwin-on-arm/xnu/bsd/sys/
H A Dkpi_mbuf.h640 @param new_mbuf Upon success, the newly allocated mbuf.
644 mbuf_how_t how, mbuf_t *new_mbuf);
654 @param new_mbuf Upon success, the newly allocated mbuf.
657 extern errno_t mbuf_dup(const mbuf_t src, mbuf_how_t how, mbuf_t *new_mbuf);
681 @param new_mbuf Upon success, the second half of the split mbuf
688 mbuf_t *new_mbuf);

Completed in 21 milliseconds