OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:histogram_data
(Results
1 - 3
of
3
) sorted by null
/external/chromium/chrome/browser/chromeos/
external_metrics.h
60
// Passes an histogram event to the UMA service. |
histogram_data
| is in the
62
void RecordHistogram(const char*
histogram_data
);
64
// Passes a linear histogram event to the UMA service. |
histogram_data
| is
66
void RecordLinearHistogram(const char*
histogram_data
);
external_metrics_unittest.cc
51
const char *
histogram_data
[] = {
local
69
int nhist = ARRAYSIZE_UNSAFE(
histogram_data
);
83
SendMessage(path, "histogram",
histogram_data
[i]);
86
CheckMessage("histogram",
histogram_data
[i], i + 1);
external_metrics.cc
78
void ExternalMetrics::RecordHistogram(const char*
histogram_data
) {
81
int n = sscanf(
histogram_data
, "%127s %d %d %d %d",
84
LOG(ERROR) << "bad histogram request: " <<
histogram_data
;
94
void ExternalMetrics::RecordLinearHistogram(const char*
histogram_data
) {
97
int n = sscanf(
histogram_data
, "%127s %d %d", name, &sample, &max);
99
LOG(ERROR) << "bad linear histogram request: " <<
histogram_data
;
Completed in 251 milliseconds