OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:DeathData
(Results
1 - 3
of
3
) sorted by null
/external/chromium/base/
tracked_objects.h
80
// collection of
DeathData
instances. For each birth place Location that is
81
// destroyed on a thread, there is a
DeathData
instance to record the additional
85
//
DeathData
instances.
88
// explaining how each thread maintains a list of
DeathData
instances, and of
94
// are lists of
DeathData
and Births instances. These lists are maintained in
211
class BASE_API
DeathData
{
214
DeathData
() : count_(0), square_duration_(0) {}
217
// threads, we create
DeathData
stats that tally the number of births without
219
explicit
DeathData
(int count) : count_(count), square_duration_(0) {}
231
void AddDeathData(const
DeathData
& other)
[
all
...]
/external/chromium_org/base/
tracked_objects.h
91
// collection of
DeathData
instances. For each birth place Location that is
92
// destroyed on a thread, there is a
DeathData
instance to record the additional
96
// lock such
DeathData
instances. (i.e., these accumulated stats in a
DeathData
100
// explaining how each thread maintains a list of
DeathData
instances, and of
106
// are lists of
DeathData
and Births instances. These lists are maintained in
190
//
DeathData
that is reset (as synchronously as possible) during each snapshot.
262
class BASE_EXPORT
DeathData
{
265
DeathData
();
268
// threads, we create
DeathData
stats that tally the number of births withou
[
all
...]
tracked_objects.cc
86
//
DeathData
tallies durations when a death takes place.
88
DeathData
::
DeathData
() {
92
DeathData
::
DeathData
(int count) {
107
void
DeathData
::RecordDeath(const int32 queue_duration,
134
int
DeathData
::count() const { return count_; }
136
int32
DeathData
::run_duration_sum() const { return run_duration_sum_; }
138
int32
DeathData
::run_duration_max() const { return run_duration_max_; }
140
int32
DeathData
::run_duration_sample() const
[
all
...]
Completed in 226 milliseconds