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;
202 struct __suio uio; /* output information: summary */
228 uio.uio_resid += (len); \
230 if (++uio.uio_iovcnt >= NIOV) { \
231 if (__sprint(fp, &uio)) \
246 if (uio.uio_resid && __sprint(fp, &uio)) \
248 uio.uio_iovcnt = 0; \
325 uio.uio_iov = iovp = iov;
326 uio.uio_resid = 0;
327 uio.uio_iovcnt = 0;