Home | History | Annotate | Download | only in lfs

Lines Matching defs:auio

795 	struct uio auio;
800 auio.uio_iov = &aiov;
801 auio.uio_iovcnt = 1;
804 auio.uio_resid = sizeof (struct dqblk);
805 auio.uio_offset = (off_t)id * sizeof (struct dqblk);
806 auio.uio_rw = UIO_READ;
807 UIO_SETUP_SYSSPACE(&auio);
808 error = VOP_READ(dqvp, &auio, 0, ump->um_cred[type]);
809 if (auio.uio_resid == sizeof(struct dqblk) && error == 0)
842 struct uio auio;
854 auio.uio_iov = &aiov;
855 auio.uio_iovcnt = 1;
858 auio.uio_resid = sizeof (struct dqblk);
859 auio.uio_offset = (off_t)dq->dq_id * sizeof (struct dqblk);
860 auio.uio_rw = UIO_WRITE;
861 UIO_SETUP_SYSSPACE(&auio);
862 error = VOP_WRITE(dqvp, &auio, 0, dq->dq_ump->um_cred[dq->dq_type]);
863 if (auio.uio_resid && error == 0)