HomeSort by relevance Sort by last modified time
    Searched defs:ReportStack (Results 1 - 2 of 2) sorted by null

  /external/compiler-rt/lib/tsan/rtl/
tsan_report.cc 22 ReportStack::ReportStack() : frames(nullptr), suppressable(false) {}
24 ReportStack *ReportStack::New() {
25 void *mem = internal_alloc(MBlockReportStack, sizeof(ReportStack));
26 return new(mem) ReportStack();
122 void PrintStack(const ReportStack *ent) {
248 static void PrintSleep(const ReportStack *s) {
256 static ReportStack *ChooseSummaryStack(const ReportDesc *rep) {
356 if (ReportStack *stack = ChooseSummaryStack(rep))
    [all...]
tsan_report.h 39 struct ReportStack {
42 static ReportStack *New();
45 ReportStack();
60 ReportStack *stack;
81 ReportStack *stack;
94 ReportStack *stack;
101 ReportStack *stack;
107 Vector<ReportStack*> stacks;
113 ReportStack *sleep;
126 void PrintStack(const ReportStack *stack)
    [all...]

Completed in 83 milliseconds