Home | History | Annotate | Download | only in stdio

Lines Matching defs:uio

59  * Flush out all the vectors defined by the given uio,
63 __sprint(FILE *fp, struct __suio *uio)
67 if (uio->uio_resid == 0) {
68 uio->uio_iovcnt = 0;
71 err = __sfvwrite(fp, uio);
72 uio->uio_resid = 0;
73 uio->uio_iovcnt = 0;
191 struct __suio uio; /* output information: summary */
217 uio.uio_resid += (len); \
219 if (++uio.uio_iovcnt >= NIOV) { \
220 if (__sprint(fp, &uio)) \
235 if (uio.uio_resid && __sprint(fp, &uio)) \
237 uio.uio_iovcnt = 0; \
314 uio.uio_iov = iovp = iov;
315 uio.uio_resid = 0;
316 uio.uio_iovcnt = 0;