OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PersistentSampleMap
(Results
1 - 5
of
5
) sorted by null
/external/libchrome/base/metrics/
persistent_sample_map.cc
19
// An iterator for going through a
PersistentSampleMap
. The logic here is
81
// This structure holds an entry for a
PersistentSampleMap
within a persistent
95
PersistentSampleMap
::
PersistentSampleMap
(
101
PersistentSampleMap
::~
PersistentSampleMap
() {
106
void
PersistentSampleMap
::Accumulate(Sample value, Count count) {
112
Count
PersistentSampleMap
::GetCount(Sample value) const {
116
const_cast<
PersistentSampleMap
*>(this)->GetSampleCountStorage(value);
120
Count
PersistentSampleMap
::TotalCount() const
[
all
...]
persistent_sample_map.h
5
//
PersistentSampleMap
implements HistogramSamples interface. It is used
31
class BASE_EXPORT
PersistentSampleMap
: public HistogramSamples {
35
PersistentSampleMap
(uint64_t id,
39
~
PersistentSampleMap
() override;
49
// the next record holding information for a
PersistentSampleMap
. The record
105
DISALLOW_COPY_AND_ASSIGN(
PersistentSampleMap
);
persistent_sample_map_unittest.cc
34
PersistentSampleMap
samples(1, allocator.get(), &meta);
51
PersistentSampleMap
samples(1, allocator.get(), &meta);
68
PersistentSampleMap
samples1(1, allocator1.get(), &meta1);
76
PersistentSampleMap
samples2(2, allocator2.get(), &meta2);
104
PersistentSampleMap
samples1(12, allocator1.get(), &meta12);
118
PersistentSampleMap
samples2(12, allocator2.get(), &meta12);
157
PersistentSampleMap
samples(1, allocator.get(), &meta);
195
PersistentSampleMap
samples1(1, allocator1.get(), &meta1);
205
PersistentSampleMap
samples2(2, allocator2.get(), &meta2);
242
PersistentSampleMap
samples(1, allocator.get(), &meta)
[
all
...]
sparse_histogram.cc
192
// attached to a single
PersistentSampleMap
by a common 64-bit identifier.
198
samples_(new
PersistentSampleMap
(HashMetricName(name), allocator, meta)),
200
new
PersistentSampleMap
(samples_->id() + 1, allocator, logged_meta)) {
persistent_histogram_allocator.cc
155
PersistentSampleMap
::GetNextPersistentRecord(record_iterator_,
219
return
PersistentSampleMap
::CreatePersistentRecord(data_manager_->allocator_,
[
all
...]
Completed in 216 milliseconds