reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
130 ReportLocation *loc = rep->locs[idx]; 147 ReportLocation *loc = rep->locs[idx];projects/compiler-rt/lib/tsan/rtl/tsan_report.cpp
33 ReportLocation *ReportLocation::New(ReportLocationType type) { 34 void *mem = internal_alloc(MBlockReportStack, sizeof(ReportLocation)); 35 return new(mem) ReportLocation(type); 183 static void PrintLocation(const ReportLocation *loc) {projects/compiler-rt/lib/tsan/rtl/tsan_report.h
86 static ReportLocation *New(ReportLocationType type); 114 Vector<ReportLocation*> locs;projects/compiler-rt/lib/tsan/rtl/tsan_rtl_report.cpp
318 ReportLocation *loc = ReportLocation::New(ReportLocationFD); 318 ReportLocation *loc = ReportLocation::New(ReportLocationFD); 337 ReportLocation *loc = ReportLocation::New(ReportLocationHeap); 337 ReportLocation *loc = ReportLocation::New(ReportLocationHeap); 350 ReportLocation *loc = 351 ReportLocation::New(is_stack ? ReportLocationStack : ReportLocationTLS); 357 if (ReportLocation *loc = SymbolizeData(addr)) {projects/compiler-rt/lib/tsan/rtl/tsan_suppressions.cpp
125 uptr IsSuppressed(ReportType typ, const ReportLocation *loc, Suppression **sp) {
projects/compiler-rt/lib/tsan/rtl/tsan_suppressions.h 33 uptr IsSuppressed(ReportType typ, const ReportLocation *loc, Suppression **sp);
projects/compiler-rt/lib/tsan/rtl/tsan_symbolize.cpp109 ReportLocation *SymbolizeData(uptr addr) { 113 ReportLocation *ent = ReportLocation::New(ReportLocationGlobal); 113 ReportLocation *ent = ReportLocation::New(ReportLocationGlobal);projects/compiler-rt/lib/tsan/rtl/tsan_symbolize.h
23 ReportLocation *SymbolizeData(uptr addr);