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

Function write_n

net/basic_socket.cpp:213–215  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

211}
212
213ssize_t write_n(int fd, const void *buf, size_t count, Timeout timeout) {
214 return send_n(fd, buf, count, 0, timeout);
215}
216
217ssize_t writev_n(int fd, struct iovec *iov, int iovcnt, Timeout timeout) {
218 return sendv_n(fd, iov, iovcnt, 0, timeout);

Callers 3

serve_connectionFunction · 0.85
TESTFunction · 0.85
st_write_residFunction · 0.85

Calls 1

send_nFunction · 0.85

Tested by 2

serve_connectionFunction · 0.68
TESTFunction · 0.68