MCPcopy Create free account
hub / github.com/alibaba/PhotonLibOS / preadv_mutable

Method preadv_mutable

fs/aligned-file.cpp:141–143  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

139 return this->preadv_mutable(iovec.iovec(), iovec.iovcnt(), offset);
140 }
141 virtual ssize_t preadv_mutable(struct iovec *iov, int iovcnt, off_t offset) override {
142 return this->preadv2_mutable(iov, iovcnt, offset, 0);
143 }
144 virtual ssize_t preadv2(const struct iovec *iov, int iovcnt, off_t offset, int flags) override {
145 IOVector iovec(iov, iovcnt);
146 return this->preadv2_mutable(iovec.iovec(), iovec.iovcnt(), offset, flags);

Callers 1

preadvMethod · 0.95

Calls 1

preadv2_mutableMethod · 0.95

Tested by

no test coverage detected