HomeSort by relevance Sort by last modified time
    Searched refs:allocs_histogram_ (Results 1 - 3 of 3) sorted by null

  /external/libchrome/base/metrics/
persistent_memory_allocator.cc 262 allocs_histogram_(nullptr),
402 DCHECK(!allocs_histogram_);
403 allocs_histogram_ = Histogram::FactoryGet(
453 if (allocs_histogram_)
454 allocs_histogram_->Add(static_cast<HistogramBase::Sample>(req_size));
457 if (allocs_histogram_)
458 allocs_histogram_->Add(0);
    [all...]
persistent_memory_allocator_unittest.cc 98 EXPECT_TRUE(allocator_->allocs_histogram_);
100 allocator_->allocs_histogram_->histogram_name());
169 allocator_->allocs_histogram_->SnapshotSamples());
177 allocs_samples = allocator_->allocs_histogram_->SnapshotSamples();
195 EXPECT_FALSE(allocator2->allocs_histogram_);
196 EXPECT_NE(allocator2->allocs_histogram_, allocator_->allocs_histogram_);
212 EXPECT_FALSE(allocator3->allocs_histogram_);
persistent_memory_allocator.h 338 HistogramBase* allocs_histogram_; // Histogram recording allocs. variable

Completed in 199 milliseconds