Lines Matching defs:iov
796 const struct iovec *iov = (const struct iovec *)iovBuf;
798 if ((iov == NULL) || (iovcnt <= 0) || (iovcnt > IOV_MAX_CNT)) {
803 if ((SSIZE_MAX - bufLen) < iov[i].iov_len) {
806 bufLen += iov[i].iov_len;
823 readBuf = (char *)iov[i].iov_base;
824 bytesToRead = iov[i].iov_len;
853 const struct iovec *iov = iovBuf;
855 if ((iov == NULL) || (iovcnt <= 0) || (iovcnt > IOV_MAX_CNT)) {
860 if ((SSIZE_MAX - bufLen) < iov[i].iov_len) {
864 bufLen += iov[i].iov_len;
876 writeBuf = (char *)iov[i].iov_base;
877 bytesToWrite = iov[i].iov_len;