Home
last modified time | relevance | path

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

/llvm-project-15.0.7/compiler-rt/lib/tsan/rtl-old/
H A Dtsan_debugging.cpp68 return const_cast<ReportDesc*>(cur_thread()->current_report); in __tsan_get_current_report()
77 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_data()
92 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_tag()
100 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_stack()
111 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_mop()
128 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_loc()
145 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_loc_object_type()
155 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_mutex()
169 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_thread()
183 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_unique_tid()
H A Dtsan_report.h100 class ReportDesc {
113 ReportDesc();
114 ~ReportDesc();
117 ReportDesc(const ReportDesc&);
118 void operator = (const ReportDesc&);
122 void PrintReport(const ReportDesc *rep);
H A Dtsan_report.cpp32 ReportDesc::ReportDesc() in ReportDesc() function in __tsan::ReportDesc
48 ReportDesc::~ReportDesc() { in ~ReportDesc()
273 static ReportStack *ChooseSummaryStack(const ReportDesc *rep) { in ChooseSummaryStack()
306 void PrintReport(const ReportDesc *rep) { in PrintReport()
450 void PrintReport(const ReportDesc *rep) { in PrintReport()
H A Dtsan_rtl_report.cpp36 bool OnReport(const ReportDesc *rep, bool suppressed);
39 bool OnReport(const ReportDesc *rep, bool suppressed) { in OnReport()
46 void __tsan_on_report(const ReportDesc *rep) { in __tsan_on_report()
160 rep_ = New<ReportDesc>(); in ScopedReportBase()
383 const ReportDesc *ScopedReportBase::GetReport() const { return rep_; } in GetReport()
742 const ReportDesc *rep = srep.GetReport(); in OutputReport()
H A Dtsan_defs.h189 class ReportDesc; variable
H A Dtsan_rtl.h210 const ReportDesc *current_report;
363 const ReportDesc *GetReport() const;
370 ReportDesc *rep_;
/llvm-project-15.0.7/compiler-rt/lib/tsan/rtl/
H A Dtsan_debugging.cpp68 return const_cast<ReportDesc*>(cur_thread()->current_report); in __tsan_get_current_report()
77 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_data()
92 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_tag()
100 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_stack()
111 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_mop()
128 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_loc()
145 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_loc_object_type()
155 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_mutex()
169 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_thread()
183 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_unique_tid()
H A Dtsan_report.h99 class ReportDesc {
113 ReportDesc();
114 ~ReportDesc();
117 ReportDesc(const ReportDesc&);
118 void operator = (const ReportDesc&);
122 void PrintReport(const ReportDesc *rep);
H A Dtsan_report.cpp32 ReportDesc::ReportDesc() in ReportDesc() function in __tsan::ReportDesc
48 ReportDesc::~ReportDesc() { in ~ReportDesc()
267 static ReportStack *ChooseSummaryStack(const ReportDesc *rep) { in ChooseSummaryStack()
300 void PrintReport(const ReportDesc *rep) { in PrintReport()
447 void PrintReport(const ReportDesc *rep) { in PrintReport()
H A Dtsan_rtl_report.cpp36 bool OnReport(const ReportDesc *rep, bool suppressed);
39 bool OnReport(const ReportDesc *rep, bool suppressed) { in OnReport()
46 void __tsan_on_report(const ReportDesc *rep) { in __tsan_on_report()
160 rep_ = New<ReportDesc>(); in ScopedReportBase()
345 const ReportDesc *ScopedReportBase::GetReport() const { return rep_; } in GetReport()
638 const ReportDesc *rep = srep.GetReport(); in OutputReport()
807 const ReportDesc *rep_desc = rep.GetReport(); in ReportRace()
H A Dtsan_defs.h163 class ReportDesc; variable
H A Dtsan_rtl.h232 const ReportDesc *current_report;
419 const ReportDesc *GetReport() const;
426 ReportDesc *rep_;
/llvm-project-15.0.7/compiler-rt/lib/tsan/tests/rtl/
H A Dtsan_test_util_posix.cpp60 bool OnReport(const ReportDesc *rep, bool suppressed) { in OnReport()