Home
last modified time | relevance | path

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

/external/compiler-rt/lib/tsan/rtl/
Dtsan_suppressions.cc101 static uptr IsSuppressed(const char *stype, const AddressInfo &info, in IsSuppressed() function
113 uptr IsSuppressed(ReportType typ, const ReportStack *stack, Suppression **sp) { in IsSuppressed() function
123 uptr pc = IsSuppressed(stype, frame->info, sp); in IsSuppressed()
128 return IsSuppressed(kSuppressionRaceTop, stack->frames->info, sp); in IsSuppressed()
132 uptr IsSuppressed(ReportType typ, const ReportLocation *loc, Suppression **sp) { in IsSuppressed() function
Dtsan_suppressions.h33 uptr IsSuppressed(ReportType typ, const ReportStack *stack, Suppression **sp);
34 uptr IsSuppressed(ReportType typ, const ReportLocation *loc, Suppression **sp);
Dtsan_rtl_report.cc505 pc_or_addr = IsSuppressed(rep->typ, rep->mops[i]->stack, &supp); in OutputReport()
507 pc_or_addr = IsSuppressed(rep->typ, rep->stacks[i], &supp); in OutputReport()
509 pc_or_addr = IsSuppressed(rep->typ, rep->threads[i]->stack, &supp); in OutputReport()
511 pc_or_addr = IsSuppressed(rep->typ, rep->locs[i], &supp); in OutputReport()
/external/syzkaller/vm/
Dvm.go191 Suppressed: report.IsSuppressed(mon.reporter, mon.output),
227 Suppressed: report.IsSuppressed(mon.reporter, mon.output),
/external/syzkaller/pkg/report/
Dreport.go114 func IsSuppressed(reporter Reporter, output []byte) bool { func