Home
last modified time | relevance | path

Searched refs:allocs_histogram_ (Results 1 – 3 of 3) sorted by relevance

/external/libchrome/base/metrics/
Dpersistent_memory_allocator.cc262 allocs_histogram_(nullptr), in PersistentMemoryAllocator()
402 DCHECK(!allocs_histogram_); in CreateTrackingHistograms()
403 allocs_histogram_ = Histogram::FactoryGet( in CreateTrackingHistograms()
453 if (allocs_histogram_) in Allocate()
454 allocs_histogram_->Add(static_cast<HistogramBase::Sample>(req_size)); in Allocate()
457 if (allocs_histogram_) in Allocate()
458 allocs_histogram_->Add(0); in Allocate()
Dpersistent_memory_allocator_unittest.cc98 EXPECT_TRUE(allocator_->allocs_histogram_); in TEST_F()
100 allocator_->allocs_histogram_->histogram_name()); in TEST_F()
169 allocator_->allocs_histogram_->SnapshotSamples()); in TEST_F()
177 allocs_samples = allocator_->allocs_histogram_->SnapshotSamples(); in TEST_F()
195 EXPECT_FALSE(allocator2->allocs_histogram_); in TEST_F()
196 EXPECT_NE(allocator2->allocs_histogram_, allocator_->allocs_histogram_); in TEST_F()
212 EXPECT_FALSE(allocator3->allocs_histogram_); in TEST_F()
Dpersistent_memory_allocator.h338 HistogramBase* allocs_histogram_; // Histogram recording allocs. variable