Lines Matching defs:iovcnt
485 auto iovcnt = tls.wbuf.riovec(iov, 1);
486 auto nwrite = writev_clear(iov, iovcnt);
524 auto iovcnt = tls.wbuf.riovec(iov.data(), iov.size());
525 auto nwrite = writev_clear(iov.data(), iovcnt);
757 auto iovcnt = tls.wbuf.riovec(iov.data(), iov.size());
758 auto nwrite = writev_clear(iov.data(), iovcnt);
1134 ssize_t Connection::writev_clear(struct iovec *iov, int iovcnt) {
1135 iovcnt = limit_iovec(iov, iovcnt, wlimit.avail());
1136 if (iovcnt == 0) {
1141 while ((nwrite = writev(fd, iov, iovcnt)) == -1 && errno == EINTR)