Searched refs:umsgp (Results 1 – 1 of 1) sorted by relevance
| /xnu-12377.41.6/bsd/kern/ |
| H A D | uipc_syscalls.c | 2486 void_ptr_t umsgp = NULL; in recvmsg_x_array() local 2527 umsgp = kalloc_data(uap->cnt * size_of_msghdr, Z_WAITOK | Z_ZERO); in recvmsg_x_array() 2528 if (umsgp == NULL) { in recvmsg_x_array() 2533 error = copyin(uap->msgp, umsgp, uap->cnt * size_of_msghdr); in recvmsg_x_array() 2538 error = internalize_recv_msghdr_array(umsgp, in recvmsg_x_array() 2634 uiocnt = externalize_recv_msghdr_array(p, so, umsgp, in recvmsg_x_array() 2640 error = copyout(umsgp, uap->msgp, uap->cnt * size_of_msghdr); in recvmsg_x_array() 2648 kfree_data(umsgp, uap->cnt * size_of_msghdr); in recvmsg_x_array()
|