MCPcopy Create free account
hub / github.com/apple/foundationdb / printable

Function printable

fdbclient/NativeAPI.actor.cpp:388–393  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

386}
387
388std::string printable(const VectorRef<KeyValueRef>& val) {
389 std::string s;
390 for (int i = 0; i < val.size(); i++)
391 s = s + printable(val[i].key) + format(":%d ", val[i].value.size());
392 return s;
393}
394
395std::string printable(const KeyValueRef& val) {
396 return printable(val.key) + format(":%d ", val.value.size());

Callers 15

dumpMutationsFunction · 0.70
debugLogRetriesMethod · 0.70
dbgMethod · 0.70
testESRFunction · 0.70
testSnapshotCacheFunction · 0.70
setupKnobsMethod · 0.70
getFullStatus_implMethod · 0.70
toStringMethod · 0.70
decodeMutationLogValueFunction · 0.70
decodeKeyMethod · 0.70

Calls 4

formatFunction · 0.50
StringRefClass · 0.50
sizeMethod · 0.45
printableMethod · 0.45

Tested by 8

criteriaToStringFunction · 0.40
Future<bool> runTestFunction · 0.40
readTOMLTestsFunction · 0.40
compareRangeResultFunction · 0.40
TestWatchMethod · 0.40