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

  /external/chromium_org/base/
tracking_info.h 19 class Births;
43 tracked_objects::Births* birth_tally;
tracked_objects.h 53 // Next, a Births instance is created for use ONLY on the thread where this
54 // instance was created. That Births instance records (in a base class
57 // Hence there is at most one Births instance for each Location on each thread.
58 // The derived Births class contains slots for recording statistics about all
66 // For Tasks, having now either constructed or found the Births instance
67 // described above, a pointer to the Births instance is then recorded into the
81 // rather we only need one Births instance for each thread that constructs an
97 // Births instances, and is able to avoid additional (redundant/unnecessary)
102 // are lists of DeathData and Births instances. These lists are maintained in
137 // For a given birth location, information about births is spread across dat
    [all...]
tracked_objects.cc 186 Births::Births(const Location& location, const ThreadData& current)
190 int Births::birth_count() const { return birth_count_; }
192 void Births::RecordBirth() { ++birth_count_; }
194 void Births::ForgetBirth() { --birth_count_; }
196 void Births::Clear() { birth_count_ = 0; }
199 // ThreadData maintains the central data for all births and deaths on a single
357 // Add births that have run to completion to |collected_data|.
358 // |birth_counts| tracks the total number of births recorded at each location
363 // Add births that are still active -- i.e. objects that have tallied a birth
    [all...]
tracked_objects_unittest.cc 50 Births* birth = ThreadData::TallyABirthIfActive(location);
53 EXPECT_EQ(reinterpret_cast<Births*>(NULL), birth);
55 EXPECT_NE(reinterpret_cast<Births*>(NULL), birth);
142 Births* first_birth = ThreadData::TallyABirthIfActive(location);
176 EXPECT_EQ(2, birth_map.begin()->second->birth_count()); // 2 births.
187 // The births were at the same location as the one known death.
361 // our tallied births are matched by tallied deaths (except for when the
379 // Turn off tracking now that we have births.
434 Births* birth = ThreadData::TallyABirthIfActive(location);
435 EXPECT_NE(reinterpret_cast<Births*>(NULL), birth)
    [all...]
  /external/chromium_org/base/profiler/
scoped_profile.h 48 class Births;
59 Births* birth_; // Place in code where tracking started.
  /external/chromium/base/
tracked.h 89 class Births;
118 Births* tracked_births_;
tracked_objects.h 48 // 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
120 // For a given birth location, information about births are spread across dat
    [all...]
tracked_objects.cc 78 Births::Births(const Location& location)
83 // ThreadData maintains the central data for all births and death.
173 collected_data.AddListOfLivingObjects(); // Add births that are still alive.
217 " The data can be reset to zero (discarding all births, deaths, etc.) using"
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)
    [all...]

Completed in 675 milliseconds