Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
232
inline void encode_nohead(std::string_view s, bufferlist& bl)
233
{
234
bl.append(s.data(), s.length());
235
}
236
inline 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
encode
Function · 0.70
append
Method · 0.45
data
Method · 0.45
length
Method · 0.45
begin
Method · 0.45
end
Method · 0.45
Tested by
no test coverage detected