Lines Matching refs:iov
163 struct iovec iov[5];
170 iov[count].iov_base = UNCONST(result);
171 iov[count++].iov_len = strlen(result);
175 iov[count].iov_base = buf;
176 iov[count++].iov_len = snprintf(buf, sizeof(buf), "(%d)", arg);
179 iov[count].iov_base = CS;
180 iov[count++].iov_len = sizeof(CS) - 1;
183 iov[count].iov_base = UNCONST(r);
184 iov[count++].iov_len = strlen(r);
188 iov[count].iov_base = NL;
189 iov[count++].iov_len = sizeof(NL) - 1;
191 while ((ret = writev(fd, iov, count)) == -1 && errno == EINTR)