MCPcopy Create free account
hub / github.com/apache/impala / ToLogFormatHexString

Method ToLogFormatHexString

be/src/kudu/util/debug-util.cc:712–719  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

710}
711
712string StackTrace::ToLogFormatHexString() const {
713 string ret;
714 for (int i = 0; i < num_frames_; i++) {
715 void* pc = frames_[i];
716 StringAppendF(&ret, " @ %*p\n", kPrintfPointerFieldWidth, pc);
717 }
718 return ret;
719}
720
721uint64_t StackTrace::HashCode() const {
722 return util_hash::CityHash64(reinterpret_cast<const char*>(frames_),

Callers 1

Calls 1

StringAppendFFunction · 0.85

Tested by

no test coverage detected