/l4re-core-master/l4re_vfs/include/impl/ |
A D | vcon_stream_impl.h | 45 Vcon_stream::readv(const struct iovec *iovec, int iovcnt) throw() in readv() argument 48 for (; iovcnt > 0; --iovcnt, ++iovec) in readv() 50 if (iovec->iov_len == 0) in readv() 53 char *buf = (char *)iovec->iov_base; in readv() 54 size_t len = iovec->iov_len; in readv() 94 Vcon_stream::writev(const struct iovec *iovec, int iovcnt) throw() in writev() argument 104 size_t sl = iovec->iov_len; in writev() 105 char const *b = (char const *)iovec->iov_base; in writev() 113 written += iovec->iov_len; in writev() 115 ++iovec; in writev()
|
A D | ns_fs.h | 37 ssize_t readv(const struct iovec*, int) throw() { return -EISDIR; } in readv() argument 38 ssize_t writev(const struct iovec*, int) throw() { return -EISDIR; } in writev() argument 39 ssize_t preadv(const struct iovec*, int, off64_t) throw() { return -EISDIR; } in preadv() argument 40 ssize_t pwritev(const struct iovec*, int, off64_t) throw() { return -EISDIR; } in pwritev() argument 64 ssize_t readv(const struct iovec*, int) throw() { return -EISDIR; } in readv() argument 65 ssize_t writev(const struct iovec*, int) throw() { return -EISDIR; } in writev() argument 66 ssize_t preadv(const struct iovec*, int, off64_t) throw() { return -EISDIR; } in preadv() argument 67 ssize_t pwritev(const struct iovec*, int, off64_t) throw() { return -EISDIR; } in pwritev() argument
|
A D | ro_file.h | 56 ssize_t read_single(const struct iovec*, off64_t) throw(); 57 ssize_t preadv(const struct iovec *, int, off64_t) throw(); 58 ssize_t pwritev(const struct iovec *, int , off64_t) throw();
|
A D | ro_file_impl.h | 52 Ro_file::read_single(const struct iovec *vec, off64_t pos) throw() in read_single() 68 Ro_file::preadv(const struct iovec *vec, int cnt, off64_t offset) throw() in preadv() 101 Ro_file::pwritev(const struct iovec *, int, off64_t) throw() in pwritev() argument
|
A D | vcon_stream.h | 37 ssize_t readv(const struct iovec*, int iovcnt) throw(); 38 ssize_t writev(const struct iovec*, int iovcnt) throw();
|
/l4re-core-master/uclibc/lib/contrib/uclibc/include/sys/ |
A D | uio.h | 39 extern ssize_t readv (int __fd, const struct iovec *__iovec, int __count); 41 extern ssize_t preadv (int __fd, const struct iovec *__iovec, int __count, 52 extern ssize_t writev (int __fd, const struct iovec *__iovec, int __count); 54 extern ssize_t pwritev (int __fd, const struct iovec *__iovec, int __count,
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/inet/rpc/ |
A D | svc_udp.c | 161 if ((sizeof (struct iovec) + sizeof (struct msghdr) in svcudp_bufcreate() 214 struct iovec *iovp; in svcudp_recv() 222 iovp = (struct iovec *) &xprt->xp_pad [0]; in svcudp_recv() 223 mesgp = (struct msghdr *) &xprt->xp_pad [sizeof (struct iovec)]; in svcudp_recv() 232 mesgp->msg_control = &xprt->xp_pad [sizeof (struct iovec) in svcudp_recv() 235 - sizeof (struct iovec) - sizeof (struct msghdr); in svcudp_recv() 284 struct iovec *iovp; in svcudp_reply() 295 mesgp = (struct msghdr *) &xprt->xp_pad [sizeof (struct iovec)]; in svcudp_reply() 298 iovp = (struct iovec *) &xprt->xp_pad [0]; in svcudp_reply()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/common/ |
A D | readv.c | 17 static ssize_t __NC(readv)(int fd, const struct iovec *vector, int count) in __NC() 29 CANCELLABLE_SYSCALL(ssize_t, readv, (int fd, const struct iovec *vector, int count),
|
A D | writev.c | 16 static ssize_t __NC(writev)(int fd, const struct iovec *vector, int count) in __NC() 28 CANCELLABLE_SYSCALL(ssize_t, writev, (int fd, const struct iovec *vector, int count), (fd, vector, …
|
A D | vmsplice.c | 15 _syscall4(ssize_t, vmsplice, int, __fdout, const struct iovec *, __iov,
|
/l4re-core-master/l4re_vfs/include/ |
A D | backend | 61 ssize_t readv(const struct iovec*, int) throw() 65 ssize_t writev(const struct iovec*, int) throw() 69 ssize_t pwritev(const struct iovec*, int, off64_t) throw() 73 ssize_t preadv(const struct iovec*, int, off64_t) throw() 239 ssize_t readv(const struct iovec *v, int iovcnt) throw() 247 ssize_t writev(const struct iovec *v, int iovcnt) throw() 255 ssize_t preadv(const struct iovec *v, int iovcnt, off64_t offset) throw() = 0; 256 ssize_t pwritev(const struct iovec *v, int iovcnt, off64_t offset) throw() = 0; 290 ssize_t preadv(const struct iovec *v, int iovcnt, off64_t) throw() 293 ssize_t pwritev(const struct iovec *v, int iovcnt, off64_t) throw()
|
A D | vfs.h | 293 virtual ssize_t readv(const struct iovec*, int iovcnt) throw() = 0; 305 virtual ssize_t writev(const struct iovec*, int iovcnt) throw() = 0; 307 virtual ssize_t preadv(const struct iovec *iov, int iovcnt, off64_t offset) throw() = 0; 308 virtual ssize_t pwritev(const struct iovec *iov, int iovcnt, off64_t offset) throw() = 0;
|
/l4re-core-master/libc_backends/lib/l4re_file/ |
A D | file.cc | 41 struct iovec iov; in read() 49 struct iovec iov; in write() 544 ssize_t preadv(int, const struct iovec *, int, off_t); 545 ssize_t pwritev(int, const struct iovec *, int, off_t); 549 L4B_REDIRECT_3(ssize_t, readv, int, const struct iovec *, int) 550 L4B_REDIRECT_3(ssize_t, writev, int, const struct iovec *, int) 551 L4B_REDIRECT_4(ssize_t, preadv, int, const struct iovec *, int, off_t) 552 L4B_REDIRECT_4(ssize_t, pwritev, int, const struct iovec *, int, off_t) 628 struct iovec iov; in pread64() 643 struct iovec iov; in pwrite64()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/common/bits/ |
A D | uio.h | 44 struct iovec struct
|
/l4re-core-master/ldso/ldso/ |
A D | syscalls.cc | 76 struct iovec v; in L4RE_CALL() 124 struct iovec v; in L4RE_CALL()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/test/nptl/ |
A D | tst-mqueue.h | 35 struct iovec iov[2]; in add_temp_mq()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libubacktrace/ |
A D | backtracesymsfd.c | 48 struct iovec iov[9]; in backtrace_symbols_fd()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/vax/bits/ |
A D | fcntl.h | 199 extern ssize_t vmsplice (int __fdout, const struct iovec *__iov,
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/nios/bits/ |
A D | fcntl.h | 221 extern ssize_t vmsplice (int __fdout, const struct iovec *__iov,
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/nios2/bits/ |
A D | fcntl.h | 223 extern ssize_t vmsplice (int __fdout, const struct iovec *__iov,
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/sh/bits/ |
A D | fcntl.h | 224 extern ssize_t vmsplice (int __fdout, const struct iovec *__iov,
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/sh64/bits/ |
A D | fcntl.h | 202 extern ssize_t vmsplice (int __fdout, const struct iovec *__iov,
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/arc/bits/ |
A D | fcntl.h | 210 extern ssize_t vmsplice (int __fdout, const struct iovec *__iov,
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/c6x/bits/ |
A D | fcntl.h | 221 extern ssize_t vmsplice (int __fdout, const struct iovec *__iov,
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/cris/bits/ |
A D | fcntl.h | 224 extern ssize_t vmsplice (int __fdout, const struct iovec *__iov,
|