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

  /external/chromium_org/base/
tracked_objects.cc 86 // DeathData tallies durations when a death takes place.
88 DeathData::DeathData() {
92 DeathData::DeathData(int count) {
107 void DeathData::RecordDeath(const int32 queue_duration,
134 int DeathData::count() const { return count_; }
136 int32 DeathData::run_duration_sum() const { return run_duration_sum_; }
138 int32 DeathData::run_duration_max() const { return run_duration_max_; }
140 int32 DeathData::run_duration_sample() const
    [all...]
tracked_objects.h 91 // collection of DeathData instances. For each birth place Location that is
92 // destroyed on a thread, there is a DeathData instance to record the additional
96 // lock such DeathData instances. (i.e., these accumulated stats in a DeathData
100 // explaining how each thread maintains a list of DeathData instances, and of
106 // are lists of DeathData and Births instances. These lists are maintained in
190 // DeathData that is reset (as synchronously as possible) during each snapshot.
262 class BASE_EXPORT DeathData {
265 DeathData();
268 // threads, we create DeathData stats that tally the number of births withou
    [all...]
tracked_objects_unittest.cc 262 scoped_ptr<DeathData> data(new DeathData());
263 ASSERT_NE(data, reinterpret_cast<DeathData*>(NULL));

Completed in 64 milliseconds