Home
last modified time | relevance | path

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

/xnu-8019.80.24/bsd/kern/
H A Duipc_syscalls.c1545 void *umsgp = NULL; in sendmsg_x() local
1597 umsgp = kalloc_data(uap->cnt * size_of_msghdr, Z_WAITOK | Z_ZERO); in sendmsg_x()
1598 if (umsgp == NULL) { in sendmsg_x()
1603 error = copyin(uap->msgp, umsgp, uap->cnt * size_of_msghdr); in sendmsg_x()
1608 error = internalize_user_msghdr_array(umsgp, in sendmsg_x()
1719 uiocnt = externalize_user_msghdr_array(umsgp, in sendmsg_x()
1729 kfree_data(umsgp, uap->cnt * size_of_msghdr); in sendmsg_x()
2228 void *umsgp = NULL; in recvmsg_x() local
2279 umsgp = kalloc_data(uap->cnt * size_of_msghdr, Z_WAITOK | Z_ZERO); in recvmsg_x()
2280 if (umsgp == NULL) { in recvmsg_x()
[all …]