Searched refs:umsgp (Results 1 – 1 of 1) sorted by relevance
| /xnu-11215.1.10/bsd/kern/ |
| H A D | uipc_syscalls.c | 2491 void_ptr_t umsgp = NULL; in recvmsg_x_array() local 2532 umsgp = kalloc_data(uap->cnt * size_of_msghdr, Z_WAITOK | Z_ZERO); in recvmsg_x_array() 2533 if (umsgp == NULL) { in recvmsg_x_array() 2538 error = copyin(uap->msgp, umsgp, uap->cnt * size_of_msghdr); in recvmsg_x_array() 2543 error = internalize_recv_msghdr_array(umsgp, in recvmsg_x_array() 2639 uiocnt = externalize_recv_msghdr_array(p, so, umsgp, in recvmsg_x_array() 2645 error = copyout(umsgp, uap->msgp, uap->cnt * size_of_msghdr); in recvmsg_x_array() 2653 kfree_data(umsgp, uap->cnt * size_of_msghdr); in recvmsg_x_array()
|