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

  /external/chromium/base/metrics/
stats_table.cc 23 // The StatsTable uses a shared memory segment that is laid out as follows
60 // Each process which accesses the table will create a StatsTable object.
61 // The StatsTable maintains a hash table of the existing counters in the
91 // The StatsTable::Private maintains convenience pointers into the
94 class StatsTable::Private {
121 (slot_id-1) * (StatsTable::kMaxThreadNameLength)];
131 (counter_id-1) * (StatsTable::kMaxCounterNameLength)];
153 // Initializes our in-memory pointers into a pre-created StatsTable.
166 StatsTable::Private* StatsTable::Private::New(const std::string& name
    [all...]
stats_table.h 5 // A StatsTable is a table of statistics. It can be used across multiple
14 // To achieve this, StatsTable creates a shared memory segment to store
34 class BASE_API StatsTable {
36 // Create a new StatsTable.
37 // If a StatsTable already exists with the specified name, this StatsTable
39 // a new StatsTable is created and all counters are zeroed.
41 // name is the name of the StatsTable to use.
44 // If the StatsTable already exists, this number is ignored.
47 // If the StatsTable already exists, this number is ignored
    [all...]
stats_counters.cc 12 if (StatsTable::current()) {
40 StatsTable* table = StatsTable::current();
68 if (StatsTable::current()) {
stats_table_unittest.cc 27 // Open a StatsTable and verify that we can write to each of the
34 StatsTable table(kTableName, kMaxThreads, kMaxCounter);
116 StatsTable table(kTableName, kMaxThreads, kMaxCounter);
117 StatsTable::set_current(&table);
172 StatsTable table(kMPTableName, 0, 0);
173 StatsTable::set_current(&table);
195 StatsTable table(kMPTableName, kMaxProcs, kMaxCounter);
196 StatsTable::set_current(&table);
253 StatsTable table(kTableName, kMaxThreads, kMaxCounter);
254 StatsTable::set_current(&table)
    [all...]
  /external/v8/src/
counters.cc 37 StatsTable::StatsTable()
counters.h 41 class StatsTable {
97 StatsTable();
105 DISALLOW_COPY_AND_ASSIGN(StatsTable);
109 // the StatsTable. They are designed to be lightweight to create and
112 // Internally, a counter represents a value in a row of a StatsTable.
isolate.h 807 StatsTable* stats_table();
    [all...]
isolate.cc     [all...]
  /external/chromium/net/tools/fetch/
fetch_server.cc 27 base::StatsTable table("fetchserver", 50, 1000);
fetch_client.cc 122 base::StatsTable table("fetchclient", 50, 1000);
  /external/chromium/chrome/browser/ui/views/
task_manager_view.cc 462 base::StatsTable* stats = base::StatsTable::current();
  /external/chromium/chrome/browser/
browser_about_handler.cc 686 base::StatsTable* table = base::StatsTable::current();
    [all...]

Completed in 750 milliseconds