Lines Matching defs:iovp
619 readv(int fdes, struct iovec *iovp, int iovcnt)
646 if (copyin(iovp, aiov32, iovcnt * sizeof (struct iovec32)))
661 if (copyin(iovp, aiov, iovcnt * sizeof (struct iovec)))
777 writev(int fdes, struct iovec *iovp, int iovcnt)
804 if (copyin(iovp, aiov32, iovcnt * sizeof (struct iovec32)))
819 if (copyin(iovp, aiov, iovcnt * sizeof (struct iovec)))
926 preadv(int fdes, struct iovec *iovp, int iovcnt, off_t offset,
968 if (copyin(iovp, aiov32, iovcnt * sizeof (struct iovec32)))
983 if (copyin(iovp, aiov, iovcnt * sizeof (struct iovec)))
1108 pwritev(int fdes, struct iovec *iovp, int iovcnt, off_t offset,
1150 if (copyin(iovp, aiov32, iovcnt * sizeof (struct iovec32)))
1165 if (copyin(iovp, aiov, iovcnt * sizeof (struct iovec)))
1623 readv32(int32_t fdes, caddr32_t iovp, int32_t iovcnt)
1625 return (readv(fdes, (void *)(uintptr_t)iovp, iovcnt));
1629 writev32(int32_t fdes, caddr32_t iovp, int32_t iovcnt)
1631 return (writev(fdes, (void *)(uintptr_t)iovp, iovcnt));