OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:counter_id
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/tools/telemetry/telemetry/timeline/
process.py
60
counter_id
= category + '.' + name
61
if
counter_id
in self.counters:
62
return self.counters[
counter_id
]
64
'Counter %s not found in process with id %s.' % (
counter_id
,
/external/chromium_org/base/metrics/
stats_table.cc
127
char* counter_name(int
counter_id
) const {
129
(
counter_id
-1) * (StatsTable::kMaxCounterNameLength)];
131
int* row(int
counter_id
) const {
132
return &data_table_[(
counter_id
-1) * max_threads()];
412
int* StatsTable::GetLocation(int
counter_id
, int slot_id) const {
418
int* row = internal_->row(
counter_id
);
572
int
counter_id
= 0;
local
579
counter_id
= FindCounterOrEmptyRow(name);
580
if (!
counter_id
)
586
strlcpy(internal_->counter_name(
counter_id
), counter_name.c_str()
[
all
...]
stats_table.h
115
int* GetLocation(int
counter_id
, int slot_id) const;
194
// On success, returns the
counter_id
for the newly added counter.
stats_table_unittest.cc
40
int
counter_id
= table.FindCounter(counter_name);
local
41
EXPECT_GT(
counter_id
, 0);
49
int
counter_id
= table.FindCounter(counter_base_name);
local
50
EXPECT_EQ(
counter_id
, 0);
Completed in 51 milliseconds