Home
last modified time | relevance | path

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

/xnu-8020.140.41/bsd/kern/
H A Duipc_syscalls.c1549 void *umsgp = NULL; in sendmsg_x() local
1601 umsgp = kalloc_data(uap->cnt * size_of_msghdr, Z_WAITOK | Z_ZERO); in sendmsg_x()
1602 if (umsgp == NULL) { in sendmsg_x()
1607 error = copyin(uap->msgp, umsgp, uap->cnt * size_of_msghdr); in sendmsg_x()
1612 error = internalize_user_msghdr_array(umsgp, in sendmsg_x()
1723 uiocnt = externalize_user_msghdr_array(umsgp, in sendmsg_x()
1733 kfree_data(umsgp, uap->cnt * size_of_msghdr); in sendmsg_x()
2232 void *umsgp = NULL; in recvmsg_x() local
2283 umsgp = kalloc_data(uap->cnt * size_of_msghdr, Z_WAITOK | Z_ZERO); in recvmsg_x()
2284 if (umsgp == NULL) { in recvmsg_x()
[all …]