MCPcopy Create free account
hub / github.com/catboost/catboost / WriteD

Function WriteD

library/cpp/coroutine/engine/network.cpp:195–199  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

193
194
195 TContIOStatus WriteD(TCont* cont, SOCKET fd, const void* buf, size_t len, TInstant deadline) noexcept {
196 IOutputStream::TPart part(buf, len);
197 TContIOVector vec(&part, 1);
198 return WriteVectorD(cont, fd, &vec, deadline);
199 }
200
201 TContIOStatus WriteT(TCont* cont, SOCKET fd, const void* buf, size_t len, TDuration timeout) noexcept {
202 return WriteD(cont, fd, buf, len, timeout.ToDeadLine());

Callers 2

WriteTFunction · 0.85
WriteIFunction · 0.85

Calls 1

WriteVectorDFunction · 0.85

Tested by

no test coverage detected