Home
last modified time | relevance | path

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

/external/compiler-rt/lib/tsan/rtl/
Dtsan_debugging.cc60 return const_cast<ReportDesc*>(cur_thread()->current_report); in __tsan_get_current_report()
69 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_data()
85 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_stack()
96 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_mop()
113 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_loc()
130 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_mutex()
144 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_thread()
158 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_unique_tid()
Dtsan_report.h104 class ReportDesc {
116 ReportDesc();
117 ~ReportDesc();
120 ReportDesc(const ReportDesc&);
121 void operator = (const ReportDesc&);
125 void PrintReport(const ReportDesc *rep);
Dtsan_report.cc55 ReportDesc::ReportDesc() in ReportDesc() function in __tsan::ReportDesc
70 ReportDesc::~ReportDesc() { in ~ReportDesc()
256 static ReportStack *ChooseSummaryStack(const ReportDesc *rep) { in ChooseSummaryStack()
289 void PrintReport(const ReportDesc *rep) { in PrintReport()
428 void PrintReport(const ReportDesc *rep) { in PrintReport()
Dtsan_rtl_report.cc50 bool OnReport(const ReportDesc *rep, bool suppressed);
53 bool OnReport(const ReportDesc *rep, bool suppressed) { in OnReport()
60 void __tsan_on_report(const ReportDesc *rep) { in __tsan_on_report()
144 void *mem = internal_alloc(MBlockReport, sizeof(ReportDesc)); in ScopedReport()
145 rep_ = new(mem) ReportDesc; in ScopedReport()
368 const ReportDesc *ScopedReport::GetReport() const { in GetReport()
499 const ReportDesc *rep = srep.GetReport(); in OutputReport()
Dtsan_defs.h157 class ReportDesc; variable
Dtsan_rtl.h438 const ReportDesc *current_report;
573 const ReportDesc *GetReport() const;
576 ReportDesc *rep_;
/external/compiler-rt/lib/tsan/tests/rtl/
Dtsan_test_util_posix.cc103 bool OnReport(const ReportDesc *rep, bool suppressed) { in OnReport()