Home
last modified time | relevance | path

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

/xnu-11417.140.69/bsd/kern/
H A Duipc_socket.c2315 int bytes_to_alloc; in sosend() local
2319 bytes_to_alloc = bytes_to_copy; in sosend()
2321 bytes_to_alloc += headroom; in sosend()
2370 bytes_to_alloc > MBIGCLBYTES && in sosend()
2373 bytes_to_alloc / M16KCLBYTES; in sosend()
2375 if ((bytes_to_alloc - in sosend()
2393 bytes_to_alloc > MCLBYTES && in sosend()
2396 bytes_to_alloc / MBIGCLBYTES; in sosend()
2398 if ((bytes_to_alloc - in sosend()
2424 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()