Home
last modified time | relevance | path

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

/xnu-8792.81.2/bsd/kern/
H A Duipc_syscalls.c1584 void_ptr_t umsgp = NULL; in sendmsg_x() local
1636 umsgp = kalloc_data(uap->cnt * size_of_msghdr, Z_WAITOK | Z_ZERO); in sendmsg_x()
1637 if (umsgp == NULL) { in sendmsg_x()
1642 error = copyin(uap->msgp, umsgp, uap->cnt * size_of_msghdr); in sendmsg_x()
1647 error = internalize_user_msghdr_array(umsgp, in sendmsg_x()
1759 externalize_user_msghdr_array(umsgp, in sendmsg_x()
1769 kfree_data(umsgp, uap->cnt * size_of_msghdr); in sendmsg_x()
2268 void_ptr_t umsgp = NULL; in recvmsg_x() local
2319 umsgp = kalloc_data(uap->cnt * size_of_msghdr, Z_WAITOK | Z_ZERO); in recvmsg_x()
2320 if (umsgp == NULL) { in recvmsg_x()
[all …]