Home
last modified time | relevance | path

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

/external/compiler-rt/lib/tsan/rtl/
Dtsan_report.h72 struct ReportLocation { struct
82 static ReportLocation *New(ReportLocationType type); argument
84 explicit ReportLocation(ReportLocationType type);
108 Vector<ReportLocation*> locs;
Dtsan_symbolize.cc69 ReportLocation *SymbolizeData(uptr addr) { in SymbolizeData()
73 ReportLocation *ent = ReportLocation::New(ReportLocationGlobal); in SymbolizeData()
Dtsan_report.cc29 ReportLocation::ReportLocation(ReportLocationType type) in ReportLocation() function in __tsan::ReportLocation
33 ReportLocation *ReportLocation::New(ReportLocationType type) { in New()
34 void *mem = internal_alloc(MBlockReportStack, sizeof(ReportLocation)); in New()
35 return new(mem) ReportLocation(type); in New()
167 static void PrintLocation(const ReportLocation *loc) { in PrintLocation()
Dtsan_symbolize.h24 ReportLocation *SymbolizeData(uptr addr);
Dtsan_rtl_report.cc308 ReportLocation *loc = ReportLocation::New(ReportLocationFD); in AddLocation()
327 ReportLocation *loc = ReportLocation::New(ReportLocationHeap); in AddLocation()
339 ReportLocation *loc = in AddLocation()
340 ReportLocation::New(is_stack ? ReportLocationStack : ReportLocationTLS); in AddLocation()
345 if (ReportLocation *loc = SymbolizeData(addr)) { in AddLocation()
Dtsan_suppressions.h34 uptr IsSuppressed(ReportType typ, const ReportLocation *loc, Suppression **sp);
Dtsan_suppressions.cc130 uptr IsSuppressed(ReportType typ, const ReportLocation *loc, Suppression **sp) { in IsSuppressed()
/external/compiler-rt/lib/tsan/go/
Dtsan_go.cc31 ReportLocation *SymbolizeData(uptr addr) { in SymbolizeData()