Home
last modified time | relevance | path

Searched refs:error_stats (Results 1 – 1 of 1) sorted by relevance

/openbsd-src/gnu/llvm/lldb/source/Plugins/Trace/intel-pt/
H A DTraceIntelPT.cpp325 const DecodedThread::ErrorStats &error_stats = in DumpTraceInfo() local
329 error_stats.GetTotalCount()); in DumpTraceInfo()
330 s.Format(" Number of fatal errors: {0}\n", error_stats.fatal_errors); in DumpTraceInfo()
331 for (const auto &[kind, count] : error_stats.libipt_errors) { in DumpTraceInfo()
335 s.Format(" Number of other errors: {0}\n", error_stats.other_errors); in DumpTraceInfo()
418 const DecodedThread::ErrorStats &error_stats = in DumpTraceInfoAsJson() local
421 json_str.attribute("totalCount", error_stats.GetTotalCount()); in DumpTraceInfoAsJson()
423 for (const auto &[kind, count] : error_stats.libipt_errors) { in DumpTraceInfoAsJson()
427 json_str.attribute("fatalErrors", error_stats.fatal_errors); in DumpTraceInfoAsJson()
428 json_str.attribute("otherErrors", error_stats.other_errors); in DumpTraceInfoAsJson()