Home | History | Annotate | Download | only in libutil

Lines Matching refs:iovcnt

64 ttymsg(struct iovec *iov, int iovcnt, const char *line, int tmout)
76 _DIAGASSERT(iovcnt >= 0);
79 if (iovcnt < 0) {
81 "%s: negative iovcnt", __func__);
85 if ((size_t)iovcnt >= sizeof(localiov) / sizeof(localiov[0])) {
88 iovcnt, sizeof(localiov) / sizeof(localiov[0]));
126 for (cnt = left = 0; cnt < (size_t)iovcnt; ++cnt)
130 wret = writev(fd, iov, iovcnt);
137 iovcnt * sizeof(struct iovec));
143 --iovcnt;