Searched refs:uio_resid (Results 1 – 14 of 14) sorted by relevance
24 if (uio->uio_resid == 0) { in __swprint()29 for (; uio->uio_resid != 0; in __swprint()30 uio->uio_resid -= len, iov++) { in __swprint()41 uio->uio_resid = 0; in __swprint()
20 while (uio->uio_resid > 0 && uio->uio_iovcnt-- > 0) { in __sswprint()27 uio->uio_resid -= len; /* pretend we copied all */ in __sswprint()31 uio->uio_resid = 0; in __sswprint()
21 while (uio->uio_resid > 0 && uio->uio_iovcnt-- > 0) { in __ssprint()27 uio->uio_resid -= len; /* pretend we copied all */ in __ssprint()31 uio->uio_resid = 0; in __ssprint()
62 if ((len = uio->uio_resid) == 0) in _sfvwrite()89 uio->uio_resid--; in _sfvwrite()92 while (uio->uio_resid > 0); in _sfvwrite()105 uio->uio_resid--; in _sfvwrite()108 while (uio->uio_resid > 0); in _sfvwrite()130 while ((uio->uio_resid -= w) != 0); in _sfvwrite()228 while ((uio->uio_resid -= w) != 0); in _sfvwrite()283 while ((uio->uio_resid -= w) != 0); in _sfvwrite()
20 if (uio->uio_resid == 0) { in __sprint()25 uio->uio_resid = 0; in __sprint()
254 if (uio->uio_resid == 0) in _ssprint()327 while ((uio->uio_resid -= w) != 0); in _ssprint()329 uio->uio_resid = 0; in _ssprint()335 uio->uio_resid = 0; in _ssprint()351 if (uio->uio_resid == 0) in _sprint()364 for (; uio->uio_resid != 0; in _sprint()365 uio->uio_resid -= len * sizeof (wchar_t), iov++) in _sprint()384 uio->uio_resid = 0; in _sprint()
123 if (!(uio.uio_resid = iov.iov_len = n = count * size)) in fwrite()148 return (n - uio.uio_resid) / size; in fwrite()
31 size_t uio_resid; member
99 iov.iov_len = uio.uio_resid = strlen (s); in fputs()
81 uio.uio_resid = c + 1; in puts()
119 iov.iov_len = uio.uio_resid = nbytes; in fputws()
460 uio.uio_resid += iovp->iov_len; \ in VFWPRINTF()486 if (uio.uio_resid && __SPRINT(fp, &uio)) \ in VFWPRINTF()604 uio.uio_resid = 0; in VFWPRINTF()
474 uio.uio_resid += (len); \ in VFPRINTF()500 if (uio.uio_resid && __SPRINT(fp, &uio)) \ in VFPRINTF()635 uio.uio_resid = 0; in VFPRINTF()
2445 * libc/stdio/fvwrite.h: change type of uio_resid from int to size_t to