Lines Matching refs:iov
1157 const struct iovec *iov = (const struct iovec *)iovBuf;
1159 if ((iov == NULL) || (iovcnt <= 0) || (iovcnt > IOV_MAX_CNT)) {
1164 if ((SSIZE_MAX - bufLen) < iov[i].iov_len) {
1167 bufLen += iov[i].iov_len;
1184 readBuf = (char *)iov[i].iov_base;
1185 bytesToRead = iov[i].iov_len;
1214 const struct iovec *iov = iovBuf;
1216 if ((iov == NULL) || (iovcnt <= 0) || (iovcnt > IOV_MAX_CNT)) {
1221 if ((SSIZE_MAX - bufLen) < iov[i].iov_len) {
1225 bufLen += iov[i].iov_len;
1237 writeBuf = (char *)iov[i].iov_base;
1238 bytesToWrite = iov[i].iov_len;