Searched refs:StatsTable (Results 1 - 25 of 34) sorted by relevance

12

/external/chromium_org/base/metrics/
H A Dstats_table.cc23 // 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
253 StatsTable::StatsTable(const std::string& name, int max_threads, function in class:base::StatsTable
[all...]
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
33 class BASE_EXPORT StatsTable { class in namespace:base
35 // Create a new StatsTable.
36 // If a StatsTable already exists with the specified name, this StatsTable
38 // a new StatsTable is created and all counters are zeroed.
40 // name is the name of the StatsTable to use.
43 // If the StatsTable already exists, this number is ignored.
46 // If the StatsTable alread
[all...]
H A Dstats_counters.cc12 if (StatsTable::current()) {
40 StatsTable* table = StatsTable::current();
68 if (StatsTable::current()) {
H A Dstats_table_unittest.cc28 // Open a StatsTable and verify that we can write to each of the
35 StatsTable table(kTableName, kMaxThreads, kMaxCounter);
124 StatsTable table(kTableName, kMaxThreads, kMaxCounter);
125 StatsTable::set_current(&table);
180 StatsTable table(kMPTableName, 0, 0);
181 StatsTable::set_current(&table);
203 StatsTable table(kMPTableName, kMaxProcs, kMaxCounter);
204 StatsTable::set_current(&table);
262 StatsTable table(kTableName, kMaxThreads, kMaxCounter);
263 StatsTable
[all...]
/external/chromium/base/metrics/
H A Dstats_table.cc23 // 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
257 StatsTable::StatsTable(const std::string& name, int max_threads, function in class:base::StatsTable
[all...]
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
34 class BASE_API StatsTable { class in namespace:base
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 alread
[all...]
H A Dstats_counters.cc12 if (StatsTable::current()) {
40 StatsTable* table = StatsTable::current();
68 if (StatsTable::current()) {
H A Dstats_table_unittest.cc27 // 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
[all...]
/external/chromium_org/chrome/test/base/
H A Dchrome_test_suite.h15 class StatsTable;
37 scoped_ptr<base::StatsTable> stats_table_;
H A Dchrome_test_suite.cc284 stats_table_.reset(new base::StatsTable(stats_filename_, 20, 200));
285 base::StatsTable::set_current(stats_table_.get());
303 base::StatsTable::set_current(NULL);
/external/chromium_org/content/browser/resources/media/
H A Dstats_table.js10 var StatsTable = (function(ssrcInfoManager) {
17 function StatsTable(ssrcInfoManager) {
25 StatsTable.prototype = {
136 return StatsTable;
H A Dwebrtc_internals.js95 statsTable = new StatsTable(ssrcInfoManager);
/external/chromium_org/v8/src/
H A Dcounters.cc37 StatsTable::StatsTable() function in class:v8::internal::StatsTable
H A Dcounters.h41 class StatsTable { class in namespace:v8::internal
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.
183 // A Histogram represents a dynamically created histogram in the StatsTable.
/external/v8/src/
H A Dcounters.cc37 StatsTable::StatsTable() function in class:v8::internal::StatsTable
H A Dcounters.h41 class StatsTable { class in namespace:v8::internal
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.
/external/chromium_org/chrome/renderer/
H A Dbenchmarking_extension.cc72 if (!args.Length() || !args[0]->IsString() || !base::StatsTable::current())
81 int counter = base::StatsTable::current()->GetCounterValue(name);
/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...]
H A Dstats_viewer.cs46 StatsTable table = new StatsTable();
332 private StatsTable stats_table_;
348 StatsTable table = new StatsTable();
/external/chromium/net/tools/fetch/
H A Dfetch_server.cc27 base::StatsTable table("fetchserver", 50, 1000);
H A Dfetch_client.cc122 base::StatsTable table("fetchclient", 50, 1000);
/external/chromium_org/net/tools/fetch/
H A Dfetch_server.cc27 base::StatsTable table("fetchserver", 50, 1000);
H A Dfetch_client.cc129 base::StatsTable table("fetchclient", 50, 1000);
/external/chromium_org/content/app/
H A Dcontent_main_runner.cc279 base::StatsTable* stats_table = new base::StatsTable(statsfile,
281 base::StatsTable::set_current(stats_table);
382 // The StatsTable must be initialized in each process; we already
/external/chromium_org/webkit/support/
H A Dtest_webkit_platform_support.cc50 v8::V8::SetCounterFunction(base::StatsTable::FindLocation);

Completed in 575 milliseconds

12