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

  /external/chromium_org/base/metrics/
stats_table.cc 19 // 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
    [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
39 class BASE_EXPORT StatsTable {
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 is destroye
    [all...]
stats_counters.cc 12 if (StatsTable::current()) {
40 StatsTable* table = StatsTable::current();
68 if (StatsTable::current()) {
stats_table_unittest.cc 23 // Open a StatsTable and verify that we can write to each of the
28 StatsTable table(StatsTable::TableIdentifier(), kMaxThreads, kMaxCounter);
117 StatsTable table(StatsTable::TableIdentifier(), kMaxThreads, kMaxCounter);
118 StatsTable::set_current(&table);
174 StatsTable table(kMPTableName, 0, 0);
175 StatsTable::set_current(&table);
196 StatsTable table(kMPTableName, kMaxProcs, kMaxCounter);
197 StatsTable::set_current(&table)
    [all...]
  /external/chromium_org/chrome/renderer/
benchmarking_extension.cc 93 if (!args.Length() || !args[0]->IsString() || !base::StatsTable::current())
98 int counter = base::StatsTable::current()->GetCounterValue(name);
104 if (!args.Length() || !args[0]->IsString() || !base::StatsTable::current())
109 int counter = base::StatsTable::current()->GetCounterValue(
  /external/chromium_org/content/test/
test_webkit_platform_support.cc 54 new base::StatsTable(base::StatsTable::TableIdentifier(), 20, 200));
55 base::StatsTable::set_current(stats_table_.get());
59 base::StatsTable::FindLocation);
112 base::StatsTable::set_current(NULL);
test_webkit_platform_support.h 20 class StatsTable;
101 scoped_ptr<base::StatsTable> stats_table_;
  /external/chromium_org/tools/stats_viewer/
stats_table.cs 27 /// An entry in the StatsTable.
30 public StatsTableEntry(int id, string name, StatsTable table) {
55 private StatsTable table_;
128 class StatsTable {
133 /// Open a StatsTable
135 public StatsTable() {
312 /// Enumerable list of Counters in the StatsTable
320 public StatsTableCounters(StatsTable table) {
434 (index * StatsTable.kMaxCounterNameLength * 2);
470 private StatsTable table_;
    [all...]
stats_viewer.cs 46 StatsTable table = new StatsTable();
332 private StatsTable stats_table_;
348 StatsTable table = new StatsTable();
  /external/chromium_org/v8/src/
counters.cc 14 StatsTable::StatsTable()
counters.h 21 class StatsTable {
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.
isolate.h 873 StatsTable* stats_table();
    [all...]
isolate.cc     [all...]
  /external/chromium_org/content/app/
content_main_runner.cc 237 base::StatsTable* stats_table =
238 new base::StatsTable(table_ident, kStatsMaxThreads, kStatsMaxCounters);
239 base::StatsTable::set_current(stats_table);
334 // The StatsTable must be initialized in each process; we already
  /external/chromium_org/content/browser/
child_process_launcher.cc 208 base::StatsTable* stats_table = base::StatsTable::current();
  /external/chromium_org/chrome/browser/ui/views/
task_manager_view.cc 387 base::StatsTable* stats = base::StatsTable::current();
  /external/chromium_org/chrome/browser/ui/webui/
about_ui.cc 615 base::StatsTable* table = base::StatsTable::current();
    [all...]
  /external/chromium_org/content/browser/resources/media/
webrtc_internals.js 10 var statsTable = null;
100 statsTable = new StatsTable(ssrcInfoManager);
265 statsTable.addStatsReport(peerConnectionElement, report);
  /external/chromium_org/content/renderer/
render_thread_impl.cc 846 isolate->SetCounterFunction(base::StatsTable::FindLocation);
    [all...]

Completed in 328 milliseconds