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

  /external/libchrome/base/
tracked_objects.cc 359 Births::Births(const Location& location, const ThreadData& current)
363 int Births::birth_count() const { return birth_count_; }
365 void Births::RecordBirth() { ++birth_count_; }
368 // ThreadData maintains the central data for all births and deaths on a single
518 // Add births that are still active -- i.e. objects that have tallied a birth,
550 Births* ThreadData::TallyABirth(const Location& location) {
552 Births* child;
557 child = new Births(location, *this); // Leak this.
567 void ThreadData::TallyADeath(const Births& births
621 const Births* births = completed_task.birth_tally; local
    [all...]
tracked_objects.h 65 // Next, a Births instance is constructed or found. A Births instance records
69 // at most one Births instance for each Location / ThreadData pair. The derived
70 // Births class contains slots for recording statistics about all instances born
79 // For Tasks, having now either constructed or found the Births instance
80 // described above, a pointer to the Births instance is then recorded into the
98 // collection of DeathData instances. For each Births / death ThreadData pair,
107 // explaining how existing Births and DeathData instances are found to avoid
110 // A ThreadData instance maintains maps of Births and DeathData instances. The
111 // Births map is indexed by Location and the DeathData map is indexed b
    [all...]

Completed in 169 milliseconds