Home | History | Annotate | Download | only in metrics

Lines Matching refs:Sample

33   // Constructs a persistent sample map using a PersistentHistogramAllocator
42 void Accumulate(HistogramBase::Sample value,
44 HistogramBase::Count GetCount(HistogramBase::Sample value) const override;
56 // specific sample |value| of a histogram with the given |sample_map_id|.
60 HistogramBase::Sample value);
67 // if sample does not exist.
68 HistogramBase::Count* GetSampleCountStorage(HistogramBase::Sample value);
71 // the sample (initialized to zero) if it does not already exists.
73 HistogramBase::Sample value);
80 // Imports samples from persistent memory by iterating over all sample
82 // count for the sample |until_value| is found, stop the import and return
87 HistogramBase::Count* ImportSamples(HistogramBase::Sample until_value,
90 // All created/loaded sample values and their associated counts. The storage
93 std::map<HistogramBase::Sample, HistogramBase::Count*> sample_counts_;
99 // The object that manages sample records inside persistent memory. This is