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

Method WriteOld

library/cpp/openssl/method/io.cpp:88–97  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

86 }
87
88 int TAbstractIO::WriteOld(const char* data, int dlen) {
89 size_t written = 0;
90
91 int ret = Write(data, dlen, &written);
92 if (ret <= 0) {
93 return ret;
94 }
95
96 return written;
97 }
98
99 int TAbstractIO::ReadOld(char* data, int dlen) {
100 size_t readbytes = 0;

Callers

nothing calls this directly

Calls 1

WriteFunction · 0.70

Tested by

no test coverage detected