Lines Matching defs:uio
20 #include <sys/uio.h>
25 * of the move, and the I/O parameters are provided in "uio", which is
30 uiomove(void *p, size_t n, enum uio_rw rw, struct uio *uio)
35 while (n && uio->uio_resid) {
36 iov = uio->uio_iov;
39 uio->uio_iov++;
40 uio->uio_iovcnt--;
43 switch (uio->uio_segflg) {
58 uio->uio_resid -= cnt;
59 uio->uio_loffset += cnt;