Home
last modified time | relevance | path

Searched refs:bytes_to_alloc (Results 1 – 2 of 2) sorted by relevance

/xnu-12377.1.9/bsd/kern/
H A Duipc_socket.c2162 int bytes_to_alloc; in sosend() local
2166 bytes_to_alloc = bytes_to_copy; in sosend()
2168 bytes_to_alloc += headroom; in sosend()
2215 bytes_to_alloc > MBIGCLBYTES && in sosend()
2218 bytes_to_alloc / M16KCLBYTES; in sosend()
2220 if ((bytes_to_alloc - in sosend()
2238 bytes_to_alloc > MCLBYTES && in sosend()
2241 bytes_to_alloc / MBIGCLBYTES; in sosend()
2243 if ((bytes_to_alloc - in sosend()
2269 bytes_to_alloc > _MHLEN) || in sosend()
[all …]
H A Duipc_syscalls.c1717 size_t bytes_to_alloc; in mbuf_packet_from_uio() local
1723 bytes_to_alloc = headroom + uio_resid(auio); in mbuf_packet_from_uio()
1725 error = mbuf_allocpacket(MBUF_WAITOK, bytes_to_alloc, NULL, &top); in mbuf_packet_from_uio()
1728 bytes_to_alloc, error); in mbuf_packet_from_uio()