/external/chromium_org/tools/telemetry/telemetry/value/ |
value_backcompat.py | 12 from telemetry.value import histogram namespace 35 elif data_type == 'histogram': 37 return histogram.HistogramValue( 39 elif data_type == 'unimportant-histogram': 41 return histogram.HistogramValue(
|
/external/chromium_org/base/metrics/ |
histogram_base.h | 31 // HistogramBase, add new histogram types and names below. 34 HISTOGRAM, 43 // Create or find existing histogram that matches the pickled info. 61 // Histogram should be UMA uploaded. 64 // Indicates that this is a stability histogram. This flag exists to specify 69 // Indicates that the histogram was pickled to be sent across an IPC 70 // Channel. If we observe this flag on a histogram being aggregated into 73 // the source histogram!). 76 // Only for Histogram and its sub classes: fancy bucket-naming support. 80 // Histogram data inconsistency types [all...] |
statistics_recorder.h | 39 // Register, or add a new histogram to the collection of statistics. If an 40 // identically named histogram is already registered, then the argument 41 // |histogram| will deleted. The returned value is always the registered 42 // histogram (either the argument, or the pre-existing registered histogram). 43 static HistogramBase* RegisterOrDeleteDuplicate(HistogramBase* histogram); 52 // Methods for appending histogram data to a string. Only histograms which 68 // Find a histogram by name. It matches the exact name. This method is thread 69 // safe. It returns NULL if a matching histogram is not found. 79 // We keep all registered histograms in a map, from name to histogram [all...] |
histogram_snapshot_manager.cc | 42 void HistogramSnapshotManager::PrepareDelta(const HistogramBase& histogram) { 46 scoped_ptr<HistogramSamples> snapshot(histogram.SnapshotSamples()); 47 const std::string& histogram_name = histogram.histogram_name(); 49 int corruption = histogram.FindCorruption(*snapshot); 66 DLOG(ERROR) << "Histogram: " << histogram_name 73 return; // We've already seen this corruption for this histogram. 86 // This histogram has not been logged before, add a new entry. 97 histogram_flattener_->RecordDelta(histogram, *to_log); 109 if (discrepancy > Histogram::kCommonRaceBasedCountMismatch) {
|
/external/chromium_org/chrome/browser/chromeos/net/ |
network_portal_detector_test_utils.cc | 17 EnumHistogramChecker::EnumHistogramChecker(const std::string& histogram, 20 : histogram_(histogram), expect_(count), base_(base) {} 35 base::HistogramBase* histogram = local 37 if (!histogram) { 45 scoped_ptr<base::HistogramSamples> samples = histogram->SnapshotSamples(); 60 LOG(ERROR) << "Histogram: " << histogram_ << ", value #" << i << ", "
|
/external/chromium_org/ppapi/api/private/ |
ppb_uma_private.idl | 22 * sample given in milliseconds in the histogram given by |name|, possibly 23 * creating the histogram if it does not exist. 35 * in the histogram given by |name|, possibly creating the histogram if it 48 * in the histogram given by |name|, possibly creating the histogram if it
|
/external/chromium_org/ppapi/c/private/ |
ppb_uma_private.h | 37 * sample given in milliseconds in the histogram given by |name|, possibly 38 * creating the histogram if it does not exist. 48 * in the histogram given by |name|, possibly creating the histogram if it 59 * in the histogram given by |name|, possibly creating the histogram if it
|
/external/chromium_org/chrome/test/base/ |
uma_histogram_helper.h | 9 #include "base/metrics/histogram.h" 31 // Each child process may have its own histogram data, make sure this data 36 // should have samples. If |PrepareSnapshot| was called for the histogram 43 // have samples as well. If |PrepareSnapshot| was called for histogram named 50 // |PrepareSnapshot| was called for |name| histogram, then the 60 base::Histogram::Count expected_count, 64 base::Histogram::Count expected_count, 69 // The map from histogram names to their snapshots
|
/external/e2fsprogs/misc/ |
e2freefrag.h | 19 struct free_chunk_histogram histogram; /* histogram of all chunk sizes*/ member in struct:chunk_info
|
/external/chromium_org/tools/telemetry/telemetry/core/ |
bitmap_unittest.py | 182 histogram = bmp.ColorHistogram() 184 self.assertEquals(sum(histogram[i]), bmp.width * bmp.height) 185 self.assertEquals(histogram.r[1], 0) 186 self.assertEquals(histogram.r[5], 2) 187 self.assertEquals(histogram.r[8], 2) 188 self.assertEquals(histogram.g[2], 0) 189 self.assertEquals(histogram.g[4], 2) 190 self.assertEquals(histogram.g[7], 2) 191 self.assertEquals(histogram.b[3], 0) 192 self.assertEquals(histogram.b[6], 4 [all...] |
/external/chromium_org/third_party/libwebp/enc/ |
histogram.h | 34 // copy-length-prefix histogram 39 // Backward reference prefix-code histogram. 56 // Create the histogram. 60 // palette_code_bits is >= 0, initialize the histogram with this value. 65 // Return the size of the histogram for a given palette_code_bits. 71 // Collect all the references into a histogram (without reset) 75 // Free the memory allocated for the histogram. 78 // Free the memory allocated for the histogram set. 85 // Allocate and initialize histogram object with specified 'cache_bits'. 90 // Accumulate a token 'v' into a histogram [all...] |
/external/webp/src/enc/ |
histogram.h | 34 // copy-length-prefix histogram 39 // Backward reference prefix-code histogram. 56 // Create the histogram. 60 // palette_code_bits is >= 0, initialize the histogram with this value. 65 // Return the size of the histogram for a given palette_code_bits. 71 // Collect all the references into a histogram (without reset) 75 // Free the memory allocated for the histogram. 78 // Free the memory allocated for the histogram set. 85 // Allocate and initialize histogram object with specified 'cache_bits'. 90 // Accumulate a token 'v' into a histogram [all...] |
/external/chromium_org/chrome/browser/extensions/api/metrics_private/ |
metrics_apitest.cc | 8 #include "base/metrics/histogram.h" 38 {"test.h.1", base::HISTOGRAM, 1, 100, 50, 1}, // custom 44 {"test.time", base::HISTOGRAM, 1, 10000, 50, 1}, 45 {"test.medium.time", base::HISTOGRAM, 1, 180000, 50, 1}, 46 {"test.long.time", base::HISTOGRAM, 1, 3600000, 50, 1}, 47 {"test.count", base::HISTOGRAM, 1, 1000000, 50, 1}, 48 {"test.medium.count", base::HISTOGRAM, 1, 10000, 50, 1}, 49 {"test.small.count", base::HISTOGRAM, 1, 100, 50, 1}, 51 {"test.bucketchange.log", base::HISTOGRAM, 1, 100, 10, 2}, }; 53 // Represents a bucket in a sparse histogram [all...] |
/external/chromium_org/apps/ |
metrics_names.h | 10 // Histogram metrics individual values.
|
/external/chromium_org/chrome/browser/importer/ |
importer_uma.cc | 27 // used to bucket a UMA histogram, and removing values breaks that. 59 // creates and owns the histogram. 60 base::HistogramBase* histogram = local 67 histogram->Add(metrics_type);
|
/external/chromium_org/chrome/browser/media_galleries/ |
media_galleries_histograms.cc | 7 #include "base/metrics/histogram.h"
|
/external/chromium_org/net/ftp/ |
ftp_server_type_histograms.cc | 7 #include "base/metrics/histogram.h" 11 // We're using a histogram as a group of counters, with one bucket for each 16 // We use two histograms. In the first histogram we tally whether the user has 18 // histogram we tally the number of transactions with FTP server of a given type
|
/external/chromium_org/third_party/brotli/src/brotli/enc/ |
Makefile | 5 OBJS = backward_references.o block_splitter.o encode.o entropy_encode.o histogram.o literal_cost.o prefix.o
|
/external/chromium_org/content/browser/ |
histogram_controller.h | 17 // HistogramController is used on the browser process to collect histogram data. 32 // OnHistogramDataCollected is returning histogram data from a child process. 37 // OnHistogramDataCollected is returning histogram data from a child process. 41 // Contact all processes and get their histogram data. 51 // Send the |histogram| back to the |subscriber_|. 60 // Contact PLUGIN and GPU child processes and get their histogram data. 61 // TODO(rtenneti): Enable getting histogram data for other processes like
|
histogram_message_filter.cc | 8 #include "base/metrics/histogram.h" 51 LOG(ERROR) << "Attempt at reading browser histogram without specifying " 55 base::HistogramBase* histogram = local 57 if (!histogram) { 60 histogram->WriteJSON(histogram_json);
|
/art/runtime/base/ |
histogram-inl.h | 20 #include "histogram.h" 31 template <class Value> inline void Histogram<Value>::AddValue(Value value) { 42 template <class Value> inline Histogram<Value>::Histogram(const char* name) 50 inline Histogram<Value>::Histogram(const char* name, Value initial_bucket_width, 61 inline void Histogram<Value>::GrowBuckets(Value new_max) { 83 template <class Value> inline size_t Histogram<Value>::FindBucket(Value val) const { 84 // Since this is only a linear histogram, bucket index can be found simply with 95 inline void Histogram<Value>::BucketiseValue(Value val) [all...] |
/external/chromium_org/tools/metrics/histograms/ |
print_style.py | 19 'histogram': ['name', 'enum', 'units'], 26 'affected-histogram': ['name'], 33 'histogram-configuration', 44 'histogram-configuration': (2, 1, 1), 51 'histogram': (1, 1, 1),
|
extract_histograms.py | 5 """Extract histogram names from the description XML file. 17 <histogram-configuration> 21 <histogram name="HistogramTime" units="milliseconds"> 23 <details>This is a more thorough description of this histogram.</details> 24 </histogram> 26 <histogram name="HistogramEnum" enum="MyEnumType"> 27 <summary>This histogram sports an enum value type.</summary> 28 </histogram> 48 <affected-histogram name="HistogramEnum"/> 53 </histogram-configuration [all...] |
/external/chromium_org/components/metrics/chromeos/ |
metric_sample.h | 24 HISTOGRAM, 56 // histogram: histogram\0|name_| |sample_| |min_| |max_| |bucket_count_|\0 64 // Builds a histogram sample. 71 // Deserializes a histogram sample. 74 // Builds a sparse histogram sample. 78 // Deserializes a sparse histogram sample. 82 // Builds a linear histogram sample. 87 // Deserializes a linear histogram sample.
|
/external/chromium_org/chrome/browser/prefs/tracked/ |
tracked_preference_helper.cc | 8 #include "base/metrics/histogram.h" 100 // The histogram below is an expansion of the UMA_HISTOGRAM_COUNTS_100 macro 101 // adapted to allow for a dynamically suffixed histogram name. 102 // Note: The factory creates and owns the histogram. 103 base::HistogramBase* histogram = local 110 histogram->Add(count);
|