MCPcopy Create free account
hub / github.com/ceph/ceph / encode_nohead

Function encode_nohead

src/include/encoding.h:232–235  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

230}
231
232inline void encode_nohead(std::string_view s, bufferlist& bl)
233{
234 bl.append(s.data(), s.length());
235}
236inline void encode_nohead(const std::string& s, bufferlist& bl)
237{
238 encode_nohead(std::string_view(s), bl);

Callers

nothing calls this directly

Calls 6

encodeFunction · 0.70
appendMethod · 0.45
dataMethod · 0.45
lengthMethod · 0.45
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected