Home
last modified time | relevance | path

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

/xnu-12377.61.12/bsd/sys/
H A Dvsock_transport.h67 enum vsock_operation op, uint32_t buf_alloc, uint32_t fwd_cnt, mbuf_t m);
74 enum vsock_operation op, uint32_t buf_alloc, uint32_t fwd_cnt, mbuf_t m, uint16_t protocol);
H A Dbuf.h719 buf_t buf_alloc(vnode_t vp);
/xnu-12377.61.12/bsd/kern/
H A Dvsock_domain.c348 const uint32_t buf_alloc = pcb->so->so_rcv.sb_hiwat; in vsock_pcb_send_message() local
352 pcb->last_buf_alloc = buf_alloc; in vsock_pcb_send_message()
356 error = vsock_put_message(src, dst, operation, buf_alloc, fwd_cnt, m, protocol); in vsock_pcb_send_message()
360 error = transport->put_message(transport->provider, src, dst, operation, buf_alloc, fwd_cnt, m); in vsock_pcb_send_message()
363 pcb->last_buf_alloc = buf_alloc; in vsock_pcb_send_message()
726 …ddress src, struct vsock_address dst, enum vsock_operation op, uint32_t buf_alloc, uint32_t fwd_cn… in vsock_put_message() argument
745 int buffers_changed = (pcb->peer_buf_alloc != buf_alloc) || (pcb->peer_fwd_cnt) != fwd_cnt; in vsock_put_message()
746 pcb->peer_buf_alloc = buf_alloc; in vsock_put_message()
H A Dkern_physio.c124 bp = buf_alloc((vnode_t)0); in physio()
/xnu-12377.61.12/bsd/vfs/
H A Dvfs_bio.c1740 buf_alloc(vnode_t vp) in buf_alloc() function