Searched refs:uio_bufp (Results 1 – 2 of 2) sorted by relevance
| /xnu-8019.80.24/bsd/kern/ |
| H A D | kpi_socket.c | 847 char *uio_bufp = NULL; in sock_send_internal() local 857 MALLOC(uio_bufp, char *, UIO_SIZEOF(msg->msg_iovlen), M_TEMP, M_WAITOK); in sock_send_internal() 858 if (uio_bufp == NULL) { in sock_send_internal() 867 UIO_SYSSPACE, UIO_WRITE, uio_bufp, UIO_SIZEOF(msg->msg_iovlen)); in sock_send_internal() 954 if (uio_bufp != NULL) { in sock_send_internal() 955 FREE(uio_bufp, M_TEMP); in sock_send_internal() 975 if (uio_bufp != NULL) { in sock_send_internal() 976 FREE(uio_bufp, M_TEMP); in sock_send_internal()
|
| /xnu-8019.80.24/bsd/nfs/ |
| H A D | nfs_serv.c | 775 char *uio_bufp = &uio_buf[0]; in nfsrv_readlink() local 794 MALLOC(uio_bufp, char*, uio_buflen, M_TEMP, M_WAITOK); in nfsrv_readlink() 795 if (!uio_bufp) { in nfsrv_readlink() 800 auio = uio_createwithbuffer(mpcnt, 0, UIO_SYSSPACE, UIO_READ, uio_bufp, uio_buflen); in nfsrv_readlink() 891 if (uio_bufp != &uio_buf[0]) { in nfsrv_readlink() 892 FREE(uio_bufp, M_TEMP); in nfsrv_readlink() 919 char *uio_bufp = NULL; in nfsrv_read() local 1006 MALLOC(uio_bufp, char *, UIO_SIZEOF(mreadcnt), M_TEMP, M_WAITOK); in nfsrv_read() 1007 if (uio_bufp) { in nfsrv_read() 1009 UIO_READ, uio_bufp, UIO_SIZEOF(mreadcnt)); in nfsrv_read() [all …]
|