HomeSort by: relevance | last modified time | path
    Searched defs:root_regions (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/lsan/
lsan_common_mac.cc 153 InternalMmapVector<RootRegion> const *root_regions = GetRootRegions(); local in function:__lsan::ProcessPlatformSpecificAllocations
170 if (!flags()->use_root_regions || !root_regions->size())
182 for (uptr i = 0; i < root_regions->size(); i++) {
183 ScanRootRegion(frontier, (*root_regions)[i], address, end_address,
lsan_common.cc 101 static InternalMmapVector<RootRegion> *root_regions; variable in namespace:__lsan
103 InternalMmapVector<RootRegion> const *GetRootRegions() { return root_regions; }
106 CHECK(!root_regions);
108 root_regions = new (placeholder) InternalMmapVector<RootRegion>(); // NOLINT
339 CHECK(root_regions);
340 for (uptr i = 0; i < root_regions->size(); i++) {
341 ProcessRootRegion(frontier, (*root_regions)[i]);
824 CHECK(root_regions);
826 root_regions->push_back(region);
835 CHECK(root_regions);
    [all...]

Completed in 13 milliseconds