Home
last modified time | relevance | path

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

/src/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DTraceIntelPT.cpp324 const DecodedThread::ErrorStats &error_stats = in DumpTraceInfo() local
328 error_stats.GetTotalCount()); in DumpTraceInfo()
329 s.Format(" Number of fatal errors: {0}\n", error_stats.fatal_errors); in DumpTraceInfo()
330 for (const auto &[kind, count] : error_stats.libipt_errors) { in DumpTraceInfo()
334 s.Format(" Number of other errors: {0}\n", error_stats.other_errors); in DumpTraceInfo()
417 const DecodedThread::ErrorStats &error_stats = in DumpTraceInfoAsJson() local
420 json_str.attribute("totalCount", error_stats.GetTotalCount()); in DumpTraceInfoAsJson()
422 for (const auto &[kind, count] : error_stats.libipt_errors) { in DumpTraceInfoAsJson()
426 json_str.attribute("fatalErrors", error_stats.fatal_errors); in DumpTraceInfoAsJson()
427 json_str.attribute("otherErrors", error_stats.other_errors); in DumpTraceInfoAsJson()