OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:counter_id
(Results
1 - 6
of
6
) 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/v8/src/
counters.h
627
#define
COUNTER_ID
(name, caption) k_##name,
628
STATS_COUNTER_LIST_1(
COUNTER_ID
)
629
STATS_COUNTER_LIST_2(
COUNTER_ID
)
630
#undef
COUNTER_ID
631
#define
COUNTER_ID
(name) kCountOf##name, kSizeOf##name,
632
INSTANCE_TYPE_LIST(
COUNTER_ID
)
633
#undef
COUNTER_ID
634
#define
COUNTER_ID
(name) kCountOfCODE_TYPE_##name, \
636
CODE_KIND_LIST(
COUNTER_ID
)
637
#undef
COUNTER_ID
[
all
...]
/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_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);
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_counters.h
123
// and then cache it once it has been looked up. The
counter_id
is
Completed in 89 milliseconds