Lines Matching refs:auio
75 struct uio auio; in getdents32() local
113 auio.uio_iov = &aiov; in getdents32()
114 auio.uio_iovcnt = 1; in getdents32()
115 auio.uio_loffset = fp->f_offset; in getdents32()
116 auio.uio_segflg = UIO_SYSSPACE; in getdents32()
117 auio.uio_resid = count; in getdents32()
118 auio.uio_fmode = 0; in getdents32()
119 auio.uio_extflg = UIO_COPY_CACHED; in getdents32()
121 error = VOP_READDIR(vp, &auio, fp->f_cred, &sink, NULL, 0); in getdents32()
125 count = count - auio.uio_resid; in getdents32()
126 fp->f_offset = auio.uio_loffset; in getdents32()
193 struct uio auio; in getdents64() local
220 auio.uio_iov = &aiov; in getdents64()
221 auio.uio_iovcnt = 1; in getdents64()
222 auio.uio_loffset = fp->f_offset; in getdents64()
223 auio.uio_segflg = UIO_USERSPACE; in getdents64()
224 auio.uio_resid = count; in getdents64()
225 auio.uio_fmode = 0; in getdents64()
226 auio.uio_extflg = UIO_COPY_CACHED; in getdents64()
228 error = VOP_READDIR(vp, &auio, fp->f_cred, &sink, NULL, 0); in getdents64()
234 count = count - auio.uio_resid; in getdents64()
235 fp->f_offset = auio.uio_loffset; in getdents64()