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

Method writev

common/memory-stream/memory-stream.cpp:52–56  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

50 return m_ringbuf.write(buf, count);
51 }
52 virtual ssize_t writev(const struct iovec *iov, int iovcnt) override
53 {
54 if (closed) return -1;
55 return m_ringbuf.writev(iov, iovcnt);
56 }
57};
58
59class DuplexMemoryStreamImpl : public DuplexMemoryStream

Callers

nothing calls this directly

Calls 1

writevMethod · 0.45

Tested by

no test coverage detected