Home
last modified time | relevance | path

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

/xnu-10002.61.3/bsd/kern/
H A Duipc_socket.c2303 int bytes_to_alloc; in sosend() local
2307 bytes_to_alloc = bytes_to_copy; in sosend()
2309 bytes_to_alloc += headroom; in sosend()
2358 bytes_to_alloc > MBIGCLBYTES && in sosend()
2361 bytes_to_alloc / M16KCLBYTES; in sosend()
2363 if ((bytes_to_alloc - in sosend()
2381 bytes_to_alloc > MCLBYTES && in sosend()
2384 bytes_to_alloc / MBIGCLBYTES; in sosend()
2386 if ((bytes_to_alloc - in sosend()
2412 bytes_to_alloc > _MHLEN) || in sosend()
[all …]
H A Duipc_syscalls.c1916 size_t bytes_to_alloc; in mbuf_packet_from_uio() local
1922 bytes_to_alloc = headroom + uio_resid(auio); in mbuf_packet_from_uio()
1924 error = mbuf_allocpacket(MBUF_WAITOK, bytes_to_alloc, NULL, &top); in mbuf_packet_from_uio()
1927 bytes_to_alloc, error); in mbuf_packet_from_uio()