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

  /external/chromium/base/
tracked_objects.h 79 // collection of DeathData instances. For each birth place Location that is
80 // destroyed on a thread, there is a DeathData instance to record the additional
84 // DeathData instances.
87 // explaining how each thread maintains a list of DeathData instances, and of
93 // are lists of DeathData and Births instances. These lists are maintained in
211 class DeathData {
214 DeathData() : count_(0), square_duration_(0) {}
217 // threads, we create DeathData stats that tally the number of births without
219 explicit DeathData(int count) : count_(count), square_duration_(0) {}
231 void AddDeathData(const DeathData& other)
    [all...]
tracked_objects.cc 28 void DeathData::RecordDeath(const TimeDelta& duration) {
35 int DeathData::AverageMsDuration() const {
39 double DeathData::StandardDeviation() const {
47 void DeathData::AddDeathData(const DeathData& other) {
53 void DeathData::Write(std::string* output) const {
62 void DeathData::Clear() {
485 // the accumulated stats for instances (DeathData).
489 const DeathData& death_data)
498 death_data_(DeathData(count))
    [all...]

Completed in 65 milliseconds