MCPcopy Create free account
hub / github.com/acl-dev/acl / writev

Method writev

lib_acl_cpp/src/stream/ostream.cpp:79–92  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

77}
78
79int ostream::writev(const struct iovec *v, int count, bool loop /* = true */)
80{
81 int ret;
82 if (loop) {
83 ret = acl_vstream_writevn(stream_, v, count);
84 } else {
85 ret = acl_vstream_writev(stream_, v, count);
86 }
87
88 if (ret == ACL_VSTREAM_EOF) {
89 eof_ = true;
90 }
91 return ret;
92}
93
94int ostream::vformat(const char* fmt, va_list ap)
95{

Callers 6

setMethod · 0.80
set_dataMethod · 0.80
write_chunkMethod · 0.80
sendMethod · 0.80
runMethod · 0.80
hvigor-wrapper.jsFile · 0.80

Calls 2

acl_vstream_writevnFunction · 0.85
acl_vstream_writevFunction · 0.85

Tested by

no test coverage detected