MCPcopy Create free account
hub / github.com/ElementsProject/elements / DebugString

Method DebugString

src/leveldb/db/dbformat.cc:27–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25}
26
27std::string ParsedInternalKey::DebugString() const {
28 std::ostringstream ss;
29 ss << '\'' << EscapeString(user_key.ToString()) << "' @ " << sequence << " : "
30 << static_cast<int>(type);
31 return ss.str();
32}
33
34std::string InternalKey::DebugString() const {
35 ParsedInternalKey parsed;

Callers 5

TESTFunction · 0.45
DumpInternalIterFunction · 0.45
BackgroundCompactionMethod · 0.45
GetPropertyMethod · 0.45
VersionEditPrinterFunction · 0.45

Calls 4

EscapeStringFunction · 0.85
ParseInternalKeyFunction · 0.85
strMethod · 0.80
ToStringMethod · 0.45

Tested by 1

TESTFunction · 0.36