MCPcopy Create free account
hub / github.com/BTCGPU/BTCGPU / DebugString

Method DebugString

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

Source from the content-addressed store, hash-verified

21}
22
23std::string ParsedInternalKey::DebugString() const {
24 char buf[50];
25 snprintf(buf, sizeof(buf), "' @ %llu : %d",
26 (unsigned long long) sequence,
27 int(type));
28 std::string result = "'";
29 result += EscapeString(user_key.ToString());
30 result += buf;
31 return result;
32}
33
34std::string InternalKey::DebugString() const {
35 std::string result;

Callers 4

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

Calls 3

EscapeStringFunction · 0.85
ParseInternalKeyFunction · 0.85
ToStringMethod · 0.45

Tested by

no test coverage detected