Searched refs:uio_resid (Results 1 – 14 of 14) sorted by relevance
23 if (uio->uio_resid == 0) { in __swprint()28 for (; uio->uio_resid != 0; in __swprint()29 uio->uio_resid -= len, iov++) { in __swprint()40 uio->uio_resid = 0; in __swprint()
20 while (uio->uio_resid > 0 && uio->uio_iovcnt-- > 0) { in __ssprint()26 uio->uio_resid -= len; /* pretend we copied all */ in __ssprint()30 uio->uio_resid = 0; in __ssprint()
21 while (uio->uio_resid > 0 && uio->uio_iovcnt-- > 0) { in __sswprint()28 uio->uio_resid -= len; /* pretend we copied all */ in __sswprint()32 uio->uio_resid = 0; in __sswprint()
63 if ((len = uio->uio_resid) == 0) in _sfvwrite()90 uio->uio_resid--; in _sfvwrite()93 while (uio->uio_resid > 0); in _sfvwrite()106 uio->uio_resid--; in _sfvwrite()109 while (uio->uio_resid > 0); in _sfvwrite()131 while ((uio->uio_resid -= w) != 0); in _sfvwrite()229 while ((uio->uio_resid -= w) != 0); in _sfvwrite()284 while ((uio->uio_resid -= w) != 0); in _sfvwrite()
19 if (uio->uio_resid == 0) { in __sprint()24 uio->uio_resid = 0; in __sprint()
256 if (uio->uio_resid == 0) in _ssprint()329 while ((uio->uio_resid -= w) != 0); in _ssprint()331 uio->uio_resid = 0; in _ssprint()337 uio->uio_resid = 0; in _ssprint()353 if (uio->uio_resid == 0) in _sprint()366 for (; uio->uio_resid != 0; in _sprint()367 uio->uio_resid -= len * sizeof (wchar_t), iov++) in _sprint()386 uio->uio_resid = 0; in _sprint()
124 if (!(uio.uio_resid = iov.iov_len = n = count * size)) in fwrite()149 return (n - uio.uio_resid) / size; in fwrite()
31 size_t uio_resid; member
100 iov.iov_len = uio.uio_resid = strlen (s); in fputs()
82 uio.uio_resid = c + 1; in puts()
120 iov.iov_len = uio.uio_resid = nbytes; in fputws()
462 uio.uio_resid += iovp->iov_len; \ in VFWPRINTF()488 if (uio.uio_resid && __SPRINT(fp, &uio)) \ in VFWPRINTF()606 uio.uio_resid = 0; in VFWPRINTF()
479 uio.uio_resid += (len); \ in VFPRINTF()505 if (uio.uio_resid && __SPRINT(fp, &uio)) \ in VFPRINTF()640 uio.uio_resid = 0; in VFPRINTF()
2445 * libc/stdio/fvwrite.h: change type of uio_resid from int to size_t to