Searched defs:iovcnt (Results 1 - 5 of 5) sorted by relevance

/osnet-11/usr/src/cmd/sendmail/libmilter/
H A Dcomm.c231 ** iovcnt -- number of elements in io vector
241 retry_writev(fd, iov, iovcnt, timeout)
244 int iovcnt;
254 while (iovcnt > 0 && iov[0].iov_len == 0)
257 iovcnt--;
259 if (iovcnt <= 0)
280 n = writev(fd, iov, iovcnt);
289 for (i = 0; i < iovcnt; i++)
300 if (i == iovcnt)
330 int iovcnt; local
[all...]
/osnet-11/usr/src/lib/libsasl/lib/
H A Dcheckpw.c349 * Keep calling the writev() system call with 'fd', 'iov', and 'iovcnt'
352 static int retry_writev(int fd, struct iovec *iov, int iovcnt) argument
370 while (iovcnt && iov[0].iov_len == 0) {
372 iovcnt--;
375 if (!iovcnt) return written;
377 n = writev(fd, iov, iovcnt > iov_max ? iov_max : iovcnt);
389 for (i = 0; i < iovcnt; i++) {
399 if (i == iovcnt) return written;
/osnet-11/usr/src/lib/libsctp/common/
H A Dsctp.c537 sctp_sendv(int sd, const struct iovec *iov, int iovcnt, struct sockaddr *addrs, argument
548 if ((addrcnt > 0 && addrs == NULL) || (iovcnt > 0 && iov == NULL) ||
610 sndv.ssndv_iovcnt = iovcnt;
/osnet-11/usr/src/lib/libndr/common/
H A Dlibndr.h371 int iovcnt; member in struct:ndr_heap
/osnet-11/usr/src/lib/libc/port/threads/
H A Dscalls.c933 readv(int fildes, const struct iovec *iov, int iovcnt) argument
938 PERFORM(__readv(fildes, iov, iovcnt))
1129 writev(int fildes, const struct iovec *iov, int iovcnt) argument
1134 PERFORM(__writev(fildes, iov, iovcnt))

Completed in 553 milliseconds