HomeSort by relevance Sort by last modified time
    Searched refs:counter_id (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/tools/telemetry/telemetry/timeline/
process.py 55 counter_id = category + '.' + name
56 if counter_id in self.counters:
57 return self.counters[counter_id]
59 '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);
570 int counter_id = 0; local
577 counter_id = FindCounterOrEmptyRow(name);
578 if (!counter_id)
584 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 210 milliseconds