Home | History | Annotate | Download | only in src

Lines Matching refs:Histogram

30   // a histogram for passing to the AddHistogramSample function
36 // to a histogram created with CreateHistogram function
56 // Create a histogram by name. If the create is successful,
69 // Add a sample to a histogram created with the CreateHistogram
71 void AddHistogramSample(void* histogram, int sample) {
73 return add_histogram_sample_function_(histogram, sample);
167 // A Histogram represents a dynamically created histogram in the StatsTable.
168 // It will be registered with the histogram system on first use.
169 class Histogram {
171 Histogram() { }
172 Histogram(const char* name,
185 // Add a single sample to this histogram.
188 // Returns true if this histogram is enabled.
199 // Returns the handle to the histogram.
224 class HistogramTimer : public Histogram {
232 : Histogram(name, min, max, num_buckets, isolate) {}
562 Histogram* name() { return &name##_; }
572 Histogram* name() { return &name##_; }
577 Histogram* name() { return &name##_; }
653 #define HR(name, caption, min, max, num_buckets) Histogram name##_;
663 Histogram name##_;
668 Histogram name##_;