reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/compiler-rt/lib/tsan/rtl/tsan_debugging.cpp
   84   *thread_count = rep->threads.Size();
  170   CHECK_LT(idx, rep->threads.Size());
  171   ReportThread *thread = rep->threads[idx];
projects/compiler-rt/lib/tsan/rtl/tsan_report.cpp
  290   if (rep->threads.Size())
  291     return rep->threads[0]->stack;
  377   for (uptr i = 0; i < rep->threads.Size(); i++)
  378     PrintThread(rep->threads[i]);
projects/compiler-rt/lib/tsan/rtl/tsan_rtl_report.cpp
  193   for (uptr i = 0; i < rep_->threads.Size(); i++) {
  194     if ((u32)rep_->threads[i]->id == tctx->tid)
  199   rep_->threads.PushBack(rt);
  516   for (uptr i = 0; pc_or_addr == 0 && i < rep->threads.Size(); i++)
  517     pc_or_addr = IsSuppressed(rep->typ, rep->threads[i]->stack, &supp);