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

  /external/chromium/base/
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
35 class StatsTable {
37 // Create a new StatsTable.
38 // If a StatsTable already exists with the specified name, this StatsTable
40 // a new StatsTable is created and all counters are zeroed.
42 // name is the name of the StatsTable to use.
45 // If the StatsTable already exists, this number is ignored.
48 // If the StatsTable already exists, this number is ignored
    [all...]
stats_table.cc 21 // The StatsTable uses a shared memory segment that is laid out as follows
58 // Each process which accesses the table will create a StatsTable object.
59 // The StatsTable maintains a hash table of the existing counters in the
88 // StatsTable. This is used so that we can properly cleanup when the
91 // Each thread that calls RegisterThread in the StatsTable will have
94 StatsTable* table;
130 (slot_id-1) * (StatsTable::kMaxThreadNameLength)];
140 (counter_id-1) * (StatsTable::kMaxCounterNameLength)];
155 // Initializes our in-memory pointers into a pre-created StatsTable.
214 // Verify we're looking at a valid StatsTable
    [all...]
stats_table_unittest.cc 30 // Open a StatsTable and verify that we can write to each of the
37 StatsTable table(kTableName, kMaxThreads, kMaxCounter);
120 StatsTable table(kTableName, kMaxThreads, kMaxCounter);
121 StatsTable::set_current(&table);
177 StatsTable table(kMPTableName, 0, 0);
178 StatsTable::set_current(&table);
199 StatsTable table(kMPTableName, kMaxProcs, kMaxCounter);
200 StatsTable::set_current(&table);
257 StatsTable table(kTableName, kMaxThreads, kMaxCounter);
258 StatsTable::set_current(&table)
    [all...]
stats_counters.h 14 // the StatsTable. They are designed to be lightweight to create and
32 // Internally, a counter represents a value in a row of a StatsTable.
73 // StatsCounter represents a counter in the StatsTable class.
131 StatsTable* table = StatsTable::current();
  /external/v8/src/
counters.cc 36 CounterLookupCallback StatsTable::lookup_function_ = NULL;
37 CreateHistogramCallback StatsTable::create_histogram_function_ = NULL;
38 AddHistogramSampleCallback StatsTable::add_histogram_sample_function_ = NULL;
74 StatsTable::AddHistogramSample(histogram_, milliseconds);
counters.h 38 class StatsTable : public AllStatic {
100 // the StatsTable. They are designed to be lightweight to create and
103 // Internally, a counter represents a value in a row of a StatsTable.
166 ptr_ = StatsTable::FindLocation(name_);
216 histogram_ = StatsTable::CreateHistogram(name_, 0, 10000, 50);
compilation-cache.cc 255 static void* script_histogram = StatsTable::CreateHistogram(
263 StatsTable::AddHistogramSample(script_histogram, generation);
spaces.cc     [all...]
api.cc     [all...]
heap.cc     [all...]
  /external/chromium/net/tools/fetch/
fetch_server.cc 27 StatsTable table("fetchserver", 50, 1000);
fetch_client.cc 118 StatsTable table("fetchclient", 50, 1000);
  /external/v8/test/cctest/
test-serialize.cc 107 StatsTable::SetCounterFunction(counter_function);
144 StatsTable::SetCounterFunction(counter_function);

Completed in 159 milliseconds