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

/external/chromium/base/
H A Dtracked_objects.h48 // Next, a Births instance is created for use ONLY on the thread where this
49 // instance was created. That Births instance records (in a base class
52 // Hence there is at most one Births instance for each Location on each thread.
53 // The derived Births class contains slots for recording statistics about all
60 // Having now either constructed or found the Births instance described above, a
61 // pointer to the Births instance is then embedded in a base class of the
73 // rather we only need one Births instance for each thread that constructs an
89 // Births instances, and is able to avoid additional (redundant/unnecessary)
94 // are lists of DeathData and Births instances. These lists are maintained in
183 class BASE_API Births class in namespace:tracked_objects
[all...]
H A Dtracked_objects.cc78 Births::Births(const Location& location) function in class:tracked_objects::Births
269 Births* ThreadData::TallyABirth(const Location& location) {
285 Births* tracker = new Births(location);
293 void ThreadData::TallyADeath(const Births& lifetimes,
665 void Aggregation::AddBirths(const Births& births) {
713 base::StringAppendF(output, "Births=%d ", birth_count_);

Completed in 62 milliseconds