Home
last modified time | relevance | path

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

/external/chromium_org/third_party/tcmalloc/vendor/src/
Dmemory_region_map.cc141 MemoryRegionMap::RegionSet* MemoryRegionMap::regions_ = NULL; member in MemoryRegionMap
235 if (regions_) regions_->~RegionSet(); in Shutdown()
236 regions_ = NULL; in Shutdown()
300 if (regions_ != NULL) { in DoFindRegionLocked()
303 RegionSet::iterator region = regions_->lower_bound(sample); in DoFindRegionLocked()
304 if (region != regions_->end()) { in DoFindRegionLocked()
341 RAW_CHECK(regions_ != NULL, ""); in BeginRegionLocked()
342 return regions_->begin(); in BeginRegionLocked()
347 RAW_CHECK(regions_ != NULL, ""); in EndRegionLocked()
348 return regions_->end(); in EndRegionLocked()
[all …]
Dmemory_region_map.h281 static RegionSet* regions_; variable
/external/chromium_org/third_party/tcmalloc/chromium/src/
Dmemory_region_map.cc142 MemoryRegionMap::RegionSet* MemoryRegionMap::regions_ = NULL; member in MemoryRegionMap
234 if (regions_ == NULL) // init regions_ in Init()
267 if (regions_) regions_->~RegionSet(); in Shutdown()
268 regions_ = NULL; in Shutdown()
337 if (regions_ != NULL) { in DoFindRegionLocked()
340 RegionSet::iterator region = regions_->lower_bound(sample); in DoFindRegionLocked()
341 if (region != regions_->end()) { in DoFindRegionLocked()
434 RAW_CHECK(regions_ != NULL, ""); in BeginRegionLocked()
435 return regions_->begin(); in BeginRegionLocked()
440 RAW_CHECK(regions_ != NULL, ""); in EndRegionLocked()
[all …]
Dmemory_region_map.h305 static RegionSet* regions_; variable
/external/chromium_org/base/debug/
Dstack_trace_posix.cc561 for (it = instance->regions_.begin(); it != instance->regions_.end(); in OpenObjectFileContainingPc()
601 if (!ParseProcMaps(contents, &regions_)) { in CacheMemoryRegions()
621 for (it = regions_.begin(); it != regions_.end(); ++it) { in OpenSymbolFiles()
695 std::vector<MappedMemoryRegion> regions_; member in base::debug::SandboxSymbolizeHelper