Home
last modified time | relevance | path

Searched refs:extbuf (Results 1 – 5 of 5) sorted by relevance

/xnu-12377.1.9/bsd/kern/
H A Dkpi_mbuf.c182 caddr_t extbuf __sized_by_or_null(extsize), void (*extfree)(caddr_t, u_int, caddr_t), in mbuf_attachcluster()
185 if (mbuf == NULL || extbuf == NULL || extfree == NULL || extsize == 0) { in mbuf_attachcluster()
189 if ((*mbuf = m_clattach(*mbuf, type, extbuf, in mbuf_attachcluster()
202 caddr_t extbuf __sized_by_or_null(extsize) = NULL; in mbuf_ring_cluster_alloc()
210 extbuf = NULL; in mbuf_ring_cluster_alloc()
212 if ((err = mbuf_alloccluster(how, &extsize, &extbuf)) != 0) { in mbuf_ring_cluster_alloc()
216 VERIFY((extsize == 0 && extbuf == NULL) || (extsize != 0 && extbuf != NULL)); in mbuf_ring_cluster_alloc()
218 if ((*mbuf = m_clattach(*mbuf, type, extbuf, in mbuf_ring_cluster_alloc()
220 mbuf_freecluster(extbuf, extsize); in mbuf_ring_cluster_alloc()
H A Duipc_mbuf.c1738 m_clattach(struct mbuf *m, int type, caddr_t extbuf __sized_by(extsize), in m_clattach()
1824 mext_init(m, extbuf, extsize, extfree, extarg, rfa, in m_clattach()
1827 mext_init(m, extbuf, extsize, extfree, (caddr_t)m, rfa, in m_clattach()
4781 caddr_t extbuf; in m_ext_paired_activate() local
4791 extbuf = m->m_ext.ext_buf; in m_ext_paired_activate()
4796 VERIFY(extbuf != NULL && rfa != NULL); in m_ext_paired_activate()
4805 mext_init(m, extbuf, extsize, extfree, (caddr_t)m, rfa, in m_ext_paired_activate()
H A Duipc_mbuf_mcache.c3170 m_clattach(struct mbuf *m, int type, caddr_t extbuf, argument
3258 mext_init(m, extbuf, extsize, extfree, extarg, rfa,
3261 mext_init(m, extbuf, extsize, extfree, (caddr_t)m, rfa,
/xnu-12377.1.9/tools/lldbmacros/
H A Dmbufs.py205 extbuf = mp.M_dat.MH.MH_dat.MH_ext.ext_buf
214 extbuf = mp.M_hdr_common.M_ext.ext_buf
222 out_string += m_ext_format.format(extbuf)
/xnu-12377.1.9/bsd/sys/
H A Dkpi_mbuf.h525 …mbuf_t *mbuf, caddr_t extbuf __sized_by_or_null(extsize), void (*extfree)(caddr_t, u_int, caddr_t),