Searched refs:iovcnt (Results 1 – 4 of 4) sorted by relevance
/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() 94 Vcon_stream::writev(const struct iovec *iovec, int iovcnt) throw() in writev() argument 102 while (iovcnt) in writev() 116 --iovcnt; in writev()
|
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/l4re_vfs/include/ |
A D | backend | 239 ssize_t readv(const struct iovec *v, int iovcnt) throw() 241 ssize_t r = preadv(v, iovcnt, _pos); 247 ssize_t writev(const struct iovec *v, int iovcnt) throw() 249 ssize_t r = pwritev(v, iovcnt, _pos); 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() 291 { return readv(v, iovcnt); } 293 ssize_t pwritev(const struct iovec *v, int iovcnt, off64_t) throw() 294 { return writev(v, iovcnt); }
|
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;
|
Completed in 5 milliseconds