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

  /external/chromium_org/base/
tracked_objects.h 57 // Next, a Births instance is created for use ONLY on the thread where this
58 // instance was created. That Births instance records (in a base class
61 // Hence there is at most one Births instance for each Location on each thread.
62 // The derived Births class contains slots for recording statistics about all
70 // For Tasks, having now either constructed or found the Births instance
71 // described above, a pointer to the Births instance is then recorded into the
85 // rather we only need one Births instance for each thread that constructs an
101 // Births instances, and is able to avoid additional (redundant/unnecessary)
106 // are lists of DeathData and Births instances. These lists are maintained in
141 // For a given birth location, information about births is spread across dat
    [all...]
tracked_objects.cc 217 Births::Births(const Location& location, const ThreadData& current)
221 int Births::birth_count() const { return birth_count_; }
223 void Births::RecordBirth() { ++birth_count_; }
225 void Births::ForgetBirth() { --birth_count_; }
227 void Births::Clear() { birth_count_ = 0; }
230 // ThreadData maintains the central data for all births and deaths on a single
388 // Add births that have run to completion to |collected_data|.
389 // |birth_counts| tracks the total number of births recorded at each location
394 // Add births that are still active -- i.e. objects that have tallied a birth
    [all...]

Completed in 52 milliseconds