Home
last modified time | relevance | path

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

/xnu-8796.141.3/bsd/kern/
H A Duipc_syscalls.c1589 void_ptr_t umsgp = NULL; in sendmsg_x() local
1641 umsgp = kalloc_data(uap->cnt * size_of_msghdr, Z_WAITOK | Z_ZERO); in sendmsg_x()
1642 if (umsgp == NULL) { in sendmsg_x()
1647 error = copyin(uap->msgp, umsgp, uap->cnt * size_of_msghdr); in sendmsg_x()
1652 error = internalize_user_msghdr_array(umsgp, in sendmsg_x()
1764 externalize_user_msghdr_array(umsgp, in sendmsg_x()
1774 kfree_data(umsgp, uap->cnt * size_of_msghdr); in sendmsg_x()
2273 void_ptr_t umsgp = NULL; in recvmsg_x() local
2324 umsgp = kalloc_data(uap->cnt * size_of_msghdr, Z_WAITOK | Z_ZERO); in recvmsg_x()
2325 if (umsgp == NULL) { in recvmsg_x()
[all …]