OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:births
(Results
1 - 4
of
4
) sorted by null
/external/chromium/base/
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_unittest.cc
84
EXPECT_EQ(2, birth_map.begin()->second->birth_count()); // 2
births
.
90
// The
births
were at the same location as the one known death.
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
...]
tracked.h
89
class
Births
;
118
Births
* tracked_births_;
Completed in 30 milliseconds