HomeSort by relevance Sort by last modified time
    Searched defs:GlobalHistogramAllocator (Results 1 - 2 of 2) sorted by null

  /external/libchrome/base/metrics/
persistent_histogram_allocator.h 335 class BASE_EXPORT GlobalHistogramAllocator
338 ~GlobalHistogramAllocator() override;
439 // Sets a GlobalHistogramAllocator for globally storing histograms in
445 static void Set(std::unique_ptr<GlobalHistogramAllocator> allocator);
449 static GlobalHistogramAllocator* Get();
455 static std::unique_ptr<GlobalHistogramAllocator> ReleaseForTesting();
479 explicit GlobalHistogramAllocator(
500 DISALLOW_COPY_AND_ASSIGN(GlobalHistogramAllocator);
persistent_histogram_allocator.cc 49 // GlobalHistogramAllocator objects) are explicitly forbidden from doing
354 DCHECK_EQ(this, GlobalHistogramAllocator::Get());
628 DCHECK_NE(GlobalHistogramAllocator::Get(), this);
654 GlobalHistogramAllocator::~GlobalHistogramAllocator() = default;
657 void GlobalHistogramAllocator::CreateWithPersistentMemory(
664 new GlobalHistogramAllocator(std::make_unique<PersistentMemoryAllocator>(
669 void GlobalHistogramAllocator::CreateWithLocalMemory(
673 Set(WrapUnique(new GlobalHistogramAllocator(
679 bool GlobalHistogramAllocator::CreateWithFile
    [all...]

Completed in 564 milliseconds