Searched refs:DeathData (Results 1 - 2 of 2) 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...]
H A Dtracked_objects.cc30 void DeathData::RecordDeath(const TimeDelta& duration) {
37 int DeathData::AverageMsDuration() const {
41 double DeathData::StandardDeviation() const {
49 void DeathData::AddDeathData(const DeathData& other) {
55 void DeathData::Write(std::string* output) const {
66 void DeathData::Clear() {
539 // the accumulated stats for instances (DeathData).
543 const DeathData& death_data)
552 death_data_(DeathData(coun
[all...]

Completed in 21 milliseconds