Searched defs:uio (Results 1 - 5 of 5) sorted by relevance
/osnet-11/usr/src/cmd/sendmail/libsm/ |
H A D | fput.c | 45 struct sm_uio uio; local 50 iov.iov_len = uio.uio_resid = strlen(s); 51 uio.uio_iov = &iov; 52 uio.uio_iovcnt = 1; 53 return sm_fvwrite(fp, timeout, &uio);
|
H A D | fwrite.c | 47 struct sm_uio uio; local 59 uio.uio_resid = iov.iov_len = size; 60 uio.uio_iov = &iov; 61 uio.uio_iovcnt = 1; 64 if (sm_fvwrite(fp, timeout, &uio) == 0) 68 return size - uio.uio_resid;
|
H A D | vfprintf.c | 46 ** Flush out all the vectors defined by the given uio, 52 ** uio -- vector list of memory locations of data for printing 60 sm_print(fp, timeout, uio) 63 register struct sm_uio *uio; 67 if (uio->uio_resid == 0) 69 uio->uio_iovcnt = 0; 72 err = sm_fvwrite(fp, timeout, uio); 73 uio->uio_resid = 0; 74 uio->uio_iovcnt = 0; 199 struct sm_uio uio; /* outpu local [all...] |
/osnet-11/usr/src/lib/libndr/common/ |
H A D | ndr_svc.c | 431 * Move bytes between a buffer and a uio structure. 433 * UIO_READ: transfer from buf to uio 434 * UIO_WRITE: transfer from uio to buf 439 ndr_uiomove(caddr_t buf, size_t buflen, enum uio_rw rw, struct uio *uio) argument 448 while (buflen && uio->uio_resid && uio->uio_iovcnt) { 449 iov = uio->uio_iov; 451 uio->uio_iov++; 452 uio [all...] |
/osnet-11/usr/src/lib/libzpool/common/ |
H A D | kernel.c | 423 vn_rdwr(int uio, vnode_t *vp, void *addr, ssize_t len, offset_t offset, argument 428 if (uio == UIO_READ) {
|
Completed in 36 milliseconds