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

Method Write

library/cpp/streams/lzma/lzma.cpp:119–129  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

117 }
118
119 inline void Write(const void* ptr, size_t len) {
120 In_.Reset(ptr, len);
121
122 Y_DEFER {
123 In_.Reset(0, 0);
124 };
125
126 while (In_.Avail()) {
127 SwitchTo();
128 }
129 }
130
131 inline void Finish() {
132 if (!Finished_) {

Callers 4

EscapeJFunction · 0.45
WriteFuncMethod · 0.45
operator()Method · 0.45
DoWriteMethod · 0.45

Calls 2

ResetMethod · 0.45
AvailMethod · 0.45

Tested by

no test coverage detected