Searched refs:aiov32 (Results 1 – 2 of 2) sorted by relevance
/titanic_41/usr/src/uts/common/syscall/ |
H A D | rw.c | 643 struct iovec32 aiov32[DEF_IOV_MAX]; in readv() local 646 if (copyin(iovp, aiov32, iovcnt * sizeof (struct iovec32))) in readv() 651 ssize32_t iovlen32 = aiov32[i].iov_len; in readv() 657 (caddr_t)(uintptr_t)aiov32[i].iov_base; in readv() 801 struct iovec32 aiov32[DEF_IOV_MAX]; in writev() local 804 if (copyin(iovp, aiov32, iovcnt * sizeof (struct iovec32))) in writev() 809 ssize32_t iovlen = aiov32[i].iov_len; in writev() 815 (caddr_t)(uintptr_t)aiov32[i].iov_base; in writev() 965 struct iovec32 aiov32[DEF_IOV_MAX]; in preadv() local 968 if (copyin(iovp, aiov32, iovcnt * sizeof (struct iovec32))) in preadv() [all …]
|
/titanic_41/usr/src/uts/common/fs/sockfs/ |
H A D | socksyscalls.c | 1079 struct iovec32 aiov32[MSG_MAXIOVLEN]; in recvmsg() local 1082 if (copyin((struct iovec32 *)lmsg.msg_iov, aiov32, in recvmsg() 1090 iovlen32 = aiov32[i].iov_len; in recvmsg() 1096 (caddr_t)(uintptr_t)aiov32[i].iov_base; in recvmsg() 1325 struct iovec32 aiov32[MSG_MAXIOVLEN]; in sendmsg() local 1329 copyin((struct iovec32 *)lmsg.msg_iov, aiov32, in sendmsg() 1337 iovlen32 = aiov32[i].iov_len; in sendmsg() 1343 (caddr_t)(uintptr_t)aiov32[i].iov_base; in sendmsg()
|