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

/external/chromium/base/
H A Dtracked_objects.h80 // collection of DeathData instances. For each birth place Location that is
81 // destroyed on a thread, there is a DeathData instance to record the additional
85 // DeathData instances.
88 // explaining how each thread maintains a list of DeathData instances, and of
94 // are lists of DeathData and Births instances. These lists are maintained in
211 class BASE_API DeathData { class in namespace:tracked_objects
214 DeathData() : count_(0), square_duration_(0) {} function in class:tracked_objects::DeathData
217 // threads, we create DeathData stats that tally the number of births without
219 explicit DeathData(int count) : count_(count), square_duration_(0) {} function in class:tracked_objects::DeathData
231 void AddDeathData(const DeathData
[all...]

Completed in 182 milliseconds