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

References

projects/compiler-rt/lib/lsan/lsan_common.cpp
  102 InternalMmapVector<RootRegion> const *GetRootRegions() { return root_regions; }
  105   CHECK(!root_regions);
  107   root_regions = new (placeholder) InternalMmapVector<RootRegion>();
  338   CHECK(root_regions);
  339   for (uptr i = 0; i < root_regions->size(); i++) {
  340     ProcessRootRegion(frontier, (*root_regions)[i]);
  819   CHECK(root_regions);
  821   root_regions->push_back(region);
  830   CHECK(root_regions);
  832   for (uptr i = 0; i < root_regions->size(); i++) {
  833     RootRegion region = (*root_regions)[i];
  836       uptr last_index = root_regions->size() - 1;
  837       (*root_regions)[i] = (*root_regions)[last_index];
  837       (*root_regions)[i] = (*root_regions)[last_index];
  838       root_regions->pop_back();