Searched refs:umsgp (Results 1 – 1 of 1) sorted by relevance
| /xnu-10063.101.15/bsd/kern/ |
| H A D | uipc_syscalls.c | 2481 void_ptr_t umsgp = NULL; in recvmsg_x_array() local 2522 umsgp = kalloc_data(uap->cnt * size_of_msghdr, Z_WAITOK | Z_ZERO); in recvmsg_x_array() 2523 if (umsgp == NULL) { in recvmsg_x_array() 2528 error = copyin(uap->msgp, umsgp, uap->cnt * size_of_msghdr); in recvmsg_x_array() 2533 error = internalize_recv_msghdr_array(umsgp, in recvmsg_x_array() 2629 uiocnt = externalize_recv_msghdr_array(p, so, umsgp, in recvmsg_x_array() 2635 error = copyout(umsgp, uap->msgp, uap->cnt * size_of_msghdr); in recvmsg_x_array() 2643 kfree_data(umsgp, uap->cnt * size_of_msghdr); in recvmsg_x_array()
|