Home
last modified time | relevance | path

Searched refs:histogram (Results 1 – 12 of 12) sorted by relevance

/system/core/metricsd/uploader/
Dbn_metricsd_impl.cc40 base::HistogramBase* histogram = base::Histogram::FactoryGet( in recordHistogram() local
46 if (histogram) { in recordHistogram()
47 histogram->Add(sample); in recordHistogram()
55 base::HistogramBase* histogram = base::LinearHistogram::FactoryGet( in recordLinearHistogram() local
61 if (histogram) { in recordLinearHistogram()
62 histogram->Add(sample); in recordLinearHistogram()
68 base::HistogramBase* histogram = base::SparseHistogram::FactoryGet( in recordSparseHistogram() local
74 if (histogram) { in recordSparseHistogram()
75 histogram->Add(sample); in recordSparseHistogram()
Dupload_service_test.cc68 base::HistogramBase* histogram = base::SparseHistogram::FactoryGet( in SendSparseHistogram() local
70 histogram->Add(sample); in SendSparseHistogram()
75 base::HistogramBase* histogram = base::Histogram::FactoryGet( in SendHistogram() local
77 histogram->Add(sample); in SendHistogram()
Dupload_service.cc201 void UploadService::RecordDelta(const base::HistogramBase& histogram, in RecordDelta() argument
203 GetOrCreateCurrentLog()->RecordHistogramDelta(histogram.histogram_name(), in RecordDelta()
Dupload_service.h148 void RecordDelta(const base::HistogramBase& histogram,
/system/connectivity/shill/
Dmetrics.cc695 string histogram = GetFullMetricName(kMetricTimeOnlineSecondsSuffix, in NotifyDefaultServiceChanged() local
698 SendToUMA(histogram, in NotifyDefaultServiceChanged()
771 string histogram = GetFullMetricName(kMetricDisconnectSuffix, technology); in NotifyServiceDisconnect() local
772 SendToUMA(histogram, in NotifyServiceDisconnect()
784 string histogram = GetFullMetricName(kMetricSignalAtDisconnectSuffix, in NotifySignalAtDisconnect() local
786 SendToUMA(histogram, in NotifySignalAtDisconnect()
940 string histogram = GetFullMetricName(kMetricLinkMonitorFailureSuffix, in NotifyLinkMonitorFailure() local
942 SendEnumToUMA(histogram, failure, kLinkMonitorFailureMax); in NotifyLinkMonitorFailure()
948 histogram = GetFullMetricName(kMetricLinkMonitorSecondsToFailureSuffix, in NotifyLinkMonitorFailure()
950 SendToUMA(histogram, in NotifyLinkMonitorFailure()
[all …]
/system/core/metricsd/
DREADME.md48 `metrics_client` is a simple shell command-line utility for sending histogram
86 periodically to metricsd (this is the case for the disk utilization histogram).
92 ### What should my histogram's |min| and |max| values be set at?
100 ### How many buckets should I use in my histogram?
104 for each histogram is proportional to the number of buckets. Therefore, it is
108 ### When should I use an enumeration (linear) histogram vs. a regular (exponential) histogram?
112 histogram with exponential bucket layout that provides higher resolution at
117 ### How can I test that my histogram was reported correctly?
121 histogram should appear in the list.
124 * After a day, your histogram should be available on the dashboard.
/system/core/metricsd/uploader/proto/
Dhistogram_event.proto29 // The name of the histogram, hashed.
45 // histogram should always include the max field.
/system/tpm/attestation/server/
Dattestation_service.cc869 int histogram[kNumTemporalValues] = {}; in ChooseTemporalIndex() local
884 ++histogram[record.temporal_index()]; in ChooseTemporalIndex()
890 if (histogram[i] < histogram[least_used_index]) in ChooseTemporalIndex()
893 if (histogram[least_used_index] > 0) { in ChooseTemporalIndex()
/system/core/bootstat/
DREADME.md39 using the Tron histogram. These logs may be uploaded by interested parties
/system/bt/build/secondary/third_party/libchrome/
DBUILD.gn83 "base/metrics/histogram.cc",
/system/connectivity/shill/wifi/
Dwifi_service.cc472 string histogram = metrics()->GetFullMetricName( in InitializeCustomMetrics() local
476 histogram, in InitializeCustomMetrics()
Dwifi_service_unittest.cc409 string histogram = metrics()->GetFullMetricName( in TEST_F() local
414 _, histogram, Service::kStateAssociating, Service::kStateConfiguring)); in TEST_F()