Searched defs:StatsTable (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/base/metrics/
H A Dstats_table.h5 // 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
39 class BASE_EXPORT StatsTable { class in namespace:base
41 // Identifies a StatsTable. We often want to share these between processes.
60 // Create a new StatsTable.
63 // If the StatsTable already exists, this number is ignored.
66 // If the StatsTable already exists, this number is ignored.
67 StatsTable(const TableIdentifier& table,
71 // Destroys the StatsTable. When the last StatsTable i
[all...]
H A Dstats_table.cc19 // The StatsTable uses a shared memory segment that is laid out as follows
56 // Each process which accesses the table will create a StatsTable object.
57 // The StatsTable maintains a hash table of the existing counters in the
87 // The StatsTable::Internal maintains convenience pointers into the
90 class StatsTable::Internal {
102 static Internal* New(const StatsTable::TableIdentifier& table,
119 (slot_id-1) * (StatsTable::kMaxThreadNameLength)];
129 (counter_id-1) * (StatsTable::kMaxCounterNameLength)];
149 const StatsTable::TableIdentifier& table,
157 // Initializes our in-memory pointers into a pre-created StatsTable
290 StatsTable::StatsTable(const TableIdentifier& table, function in class:base::StatsTable
[all...]
/external/chromium_org/v8/src/
H A Dcounters.cc14 StatsTable::StatsTable() function in class:v8::internal::StatsTable
H A Dcounters.h21 class StatsTable { class in namespace:v8::internal
77 StatsTable();
85 DISALLOW_COPY_AND_ASSIGN(StatsTable);
89 // the StatsTable. They are designed to be lightweight to create and
92 // Internally, a counter represents a value in a row of a StatsTable.
167 // A Histogram represents a dynamically created histogram in the StatsTable.
/external/chromium_org/tools/stats_viewer/
H A Dstats_table.cs27 /// An entry in the StatsTable.
30 public StatsTableEntry(int id, string name, StatsTable table) {
55 private StatsTable table_;
128 class StatsTable { class in namespace:StatsViewer
133 /// Open a StatsTable
135 public StatsTable() { method in class:StatsViewer.StatsTable
312 /// Enumerable list of Counters in the StatsTable
320 public StatsTableCounters(StatsTable table) {
434 (index * StatsTable.kMaxCounterNameLength * 2);
470 private StatsTable table
[all...]

Completed in 563 milliseconds