Home
last modified time | relevance | path

Searched refs:iovec (Results 1 – 25 of 64) sorted by relevance

123

/l4re-core-master/l4re_vfs/include/impl/
A Dvcon_stream_impl.h45 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 Dns_fs.h37 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 Dro_file.h56 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 Dro_file_impl.h52 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 Dvcon_stream.h37 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 Duio.h39 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 Dsvc_udp.c161 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 Dreadv.c17 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 Dwritev.c16 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 Dvmsplice.c15 _syscall4(ssize_t, vmsplice, int, __fdout, const struct iovec *, __iov,
/l4re-core-master/l4re_vfs/include/
A Dbackend61 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 Dvfs.h293 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 Dfile.cc41 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 Duio.h44 struct iovec struct
/l4re-core-master/ldso/ldso/
A Dsyscalls.cc76 struct iovec v; in L4RE_CALL()
124 struct iovec v; in L4RE_CALL()
/l4re-core-master/uclibc/lib/contrib/uclibc/test/nptl/
A Dtst-mqueue.h35 struct iovec iov[2]; in add_temp_mq()
/l4re-core-master/uclibc/lib/contrib/uclibc/libubacktrace/
A Dbacktracesymsfd.c48 struct iovec iov[9]; in backtrace_symbols_fd()
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/vax/bits/
A Dfcntl.h199 extern ssize_t vmsplice (int __fdout, const struct iovec *__iov,
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/nios/bits/
A Dfcntl.h221 extern ssize_t vmsplice (int __fdout, const struct iovec *__iov,
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/nios2/bits/
A Dfcntl.h223 extern ssize_t vmsplice (int __fdout, const struct iovec *__iov,
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/sh/bits/
A Dfcntl.h224 extern ssize_t vmsplice (int __fdout, const struct iovec *__iov,
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/sh64/bits/
A Dfcntl.h202 extern ssize_t vmsplice (int __fdout, const struct iovec *__iov,
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/arc/bits/
A Dfcntl.h210 extern ssize_t vmsplice (int __fdout, const struct iovec *__iov,
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/c6x/bits/
A Dfcntl.h221 extern ssize_t vmsplice (int __fdout, const struct iovec *__iov,
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/cris/bits/
A Dfcntl.h224 extern ssize_t vmsplice (int __fdout, const struct iovec *__iov,

Completed in 44 milliseconds

123