Lines Matching refs:iovcnt
178 syscallarg(int) iovcnt;
182 SCARG(uap, iovcnt), NULL, FOF_UPDATE_OFFSET, retval);
186 do_filereadv(int fd, const struct iovec *iovp, int iovcnt,
197 if (iovcnt == 0)
227 iovlen = iovcnt * sizeof(struct iovec);
232 if ((u_int)iovcnt > UIO_SMALLIOV) {
233 if ((u_int)iovcnt > IOV_MAX) {
246 auio.uio_iovcnt = iovcnt;
251 for (i = 0; i < iovcnt; i++, iov++) {
380 syscallarg(int) iovcnt;
384 SCARG(uap, iovcnt), NULL, FOF_UPDATE_OFFSET, retval);
388 do_filewritev(int fd, const struct iovec *iovp, int iovcnt,
399 if (iovcnt == 0)
429 iovlen = iovcnt * sizeof(struct iovec);
434 if ((u_int)iovcnt > UIO_SMALLIOV) {
435 if ((u_int)iovcnt > IOV_MAX) {
448 auio.uio_iovcnt = iovcnt;
453 for (i = 0; i < iovcnt; i++, iov++) {