HomeSort by relevance Sort by last modified time
    Searched refs:HistogramBase (Results 1 - 25 of 118) sorted by null

1 2 3 4 5

  /external/chromium_org/net/socket/
client_socket_pool_histograms.h 15 class HistogramBase;
32 base::HistogramBase* socket_type_;
33 base::HistogramBase* request_time_;
34 base::HistogramBase* unused_idle_time_;
35 base::HistogramBase* reused_idle_time_;
36 base::HistogramBase* error_code_;
client_socket_pool_histograms.cc 17 using base::HistogramBase;
28 HistogramBase::kUmaTargetedHistogramFlag);
34 100, HistogramBase::kUmaTargetedHistogramFlag);
40 100, HistogramBase::kUmaTargetedHistogramFlag);
46 100, HistogramBase::kUmaTargetedHistogramFlag);
51 HistogramBase::kUmaTargetedHistogramFlag);
  /external/chromium_org/base/metrics/
sample_vector.h 29 virtual void Accumulate(HistogramBase::Sample value,
30 HistogramBase::Count count) OVERRIDE;
31 virtual HistogramBase::Count GetCount(
32 HistogramBase::Sample value) const OVERRIDE;
33 virtual HistogramBase::Count TotalCount() const OVERRIDE;
37 HistogramBase::Count GetCountAtIndex(size_t bucket_index) const;
44 virtual size_t GetBucketIndex(HistogramBase::Sample value) const;
49 std::vector<HistogramBase::AtomicCount> counts_;
59 SampleVectorIterator(const std::vector<HistogramBase::AtomicCount>* counts,
66 virtual void Get(HistogramBase::Sample* min
    [all...]
histogram_flattener.h 24 virtual void RecordDelta(const HistogramBase& histogram,
29 virtual void InconsistencyDetected(HistogramBase::Inconsistency problem) = 0;
34 HistogramBase::Inconsistency problem) = 0;
sample_map.h 26 virtual void Accumulate(HistogramBase::Sample value,
27 HistogramBase::Count count) OVERRIDE;
28 virtual HistogramBase::Count GetCount(
29 HistogramBase::Sample value) const OVERRIDE;
30 virtual HistogramBase::Count TotalCount() const OVERRIDE;
39 std::map<HistogramBase::Sample, HistogramBase::Count> sample_counts_;
46 typedef std::map<HistogramBase::Sample, HistogramBase::Count>
55 virtual void Get(HistogramBase::Sample* min
    [all...]
histogram_samples.h 25 virtual void Accumulate(HistogramBase::Sample value,
26 HistogramBase::Count count) = 0;
27 virtual HistogramBase::Count GetCount(HistogramBase::Sample value) const = 0;
28 virtual HistogramBase::Count TotalCount() const = 0;
42 HistogramBase::Count redundant_count() const {
52 void IncreaseRedundantCount(HistogramBase::Count diff);
64 HistogramBase::AtomicCount redundant_count_;
77 virtual void Get(HistogramBase::Sample* min,
78 HistogramBase::Sample* max
    [all...]
histogram_delta_serialization.h 19 class HistogramBase;
41 virtual void RecordDelta(const HistogramBase& histogram,
44 HistogramBase::Inconsistency problem) OVERRIDE;
46 HistogramBase::Inconsistency problem) OVERRIDE;
56 HistogramBase* inconsistencies_histogram_;
57 HistogramBase* inconsistencies_unique_histogram_;
58 HistogramBase* inconsistent_snapshot_histogram_;
histogram_base.cc 40 HistogramBase* DeserializeHistogramInfo(PickleIterator* iter) {
61 const HistogramBase::Sample HistogramBase::kSampleType_MAX = INT_MAX;
63 HistogramBase::HistogramBase(const std::string& name)
67 HistogramBase::~HistogramBase() {}
69 void HistogramBase::CheckName(const StringPiece& name) const {
73 void HistogramBase::SetFlags(int32 flags) {
77 void HistogramBase::ClearFlags(int32 flags)
    [all...]
histogram_delta_serialization.cc 21 HistogramBase* histogram = DeserializeHistogramInfo(iter);
25 if (histogram->flags() & HistogramBase::kIPCSerializationSourceFlag) {
42 HistogramBase::NEVER_EXCEEDED_VALUE,
43 HistogramBase::NEVER_EXCEEDED_VALUE + 1,
44 HistogramBase::kUmaTargetedHistogramFlag);
49 HistogramBase::NEVER_EXCEEDED_VALUE,
50 HistogramBase::NEVER_EXCEEDED_VALUE + 1,
51 HistogramBase::kUmaTargetedHistogramFlag);
56 HistogramBase::kUmaTargetedHistogramFlag);
85 const HistogramBase& histogram
    [all...]
histogram_base_unittest.cc 39 HistogramBase* histogram = Histogram::FactoryGet(
41 (HistogramBase::kUmaTargetedHistogramFlag |
42 HistogramBase::kIPCSerializationSourceFlag));
48 HistogramBase* deserialized = DeserializeHistogramInfo(&iter);
61 EXPECT_EQ(HistogramBase::kUmaTargetedHistogramFlag, deserialized->flags());
65 HistogramBase* histogram = LinearHistogram::FactoryGet(
67 HistogramBase::kIPCSerializationSourceFlag);
73 HistogramBase* deserialized = DeserializeHistogramInfo(&iter);
88 HistogramBase* histogram = BooleanHistogram::FactoryGet(
89 "TestHistogram", HistogramBase::kIPCSerializationSourceFlag)
    [all...]
histogram_snapshot_manager_unittest.cc 21 virtual void RecordDelta(const HistogramBase& histogram,
27 HistogramBase::Inconsistency problem) OVERRIDE {
32 HistogramBase::Inconsistency problem) OVERRIDE {
67 histogram_snapshot_manager_.PrepareDeltas(HistogramBase::kNoFlags,
68 HistogramBase::kNoFlags);
83 HistogramBase::kNoFlags, HistogramBase::kUmaTargetedHistogramFlag);
98 HistogramBase::kNoFlags, HistogramBase::kUmaStabilityHistogramFlag);
histogram_snapshot_manager.h 37 void PrepareDeltas(HistogramBase::Flags flags_to_set,
38 HistogramBase::Flags required_flags);
42 void PrepareDelta(const HistogramBase& histogram);
histogram_unittest.cc 52 HistogramBase* histogram = Histogram::FactoryGet(
53 "TestHistogram", 1, 1000, 10, HistogramBase::kNoFlags);
56 HistogramBase* linear_histogram = LinearHistogram::FactoryGet(
57 "TestLinearHistogram", 1, 1000, 10, HistogramBase::kNoFlags);
63 HistogramBase* custom_histogram = CustomHistogram::FactoryGet(
64 "TestCustomHistogram", custom_ranges, HistogramBase::kNoFlags);
82 HistogramBase* histogram = LinearHistogram::FactoryGet(
83 "DuplicatedHistogram", 1, 101, 102, HistogramBase::kNoFlags);
100 EXPECT_EQ(HistogramBase::kSampleType_MAX, ranges.range(8));
104 Histogram::FactoryGet("Histogram", 1, 64, 8, HistogramBase::kNoFlags))
    [all...]
histogram_samples.cc 20 virtual void Get(HistogramBase::Sample* min,
21 HistogramBase::Sample* max,
22 HistogramBase::Count* count) const OVERRIDE;
26 HistogramBase::Sample min_;
27 HistogramBase::Sample max_;
28 HistogramBase::Count count_;
50 void SampleCountPickleIterator::Get(HistogramBase::Sample* min,
51 HistogramBase::Sample* max,
52 HistogramBase::Count* count) const {
67 HistogramBase::Count old_redundant_count
    [all...]
statistics_recorder.h 26 class HistogramBase;
31 typedef std::vector<HistogramBase*> Histograms;
43 static HistogramBase* RegisterOrDeleteDuplicate(HistogramBase* histogram);
70 static HistogramBase* FindHistogram(const std::string& name);
80 typedef std::map<std::string, HistogramBase*> HistogramMap;
sparse_histogram.h 25 base::HistogramBase* histogram( \
32 HISTOGRAM_SPARSE_COMMON(name, sample, base::HistogramBase::kNoFlags)
36 base::HistogramBase::kUmaTargetedHistogramFlag)
57 class BASE_EXPORT_PRIVATE SparseHistogram : public HistogramBase {
61 static HistogramBase* FactoryGet(const std::string& name, int32 flags);
65 // HistogramBase implementation:
79 // HistogramBase implementation:
86 friend BASE_EXPORT_PRIVATE HistogramBase* DeserializeHistogramInfo(
88 static HistogramBase* DeserializeInfoImpl(PickleIterator* iter);
histogram_snapshot_manager.cc 29 HistogramBase::Flags flag_to_set,
30 HistogramBase::Flags required_flags) {
42 void HistogramSnapshotManager::PrepareDelta(const HistogramBase& histogram) {
54 if (HistogramBase::BUCKET_ORDER_ERROR & corruption) {
56 CHECK_NE(0, HistogramBase::RANGE_CHECKSUM_ERROR & corruption);
60 CHECK_EQ(0, HistogramBase::RANGE_CHECKSUM_ERROR & corruption);
69 static_cast<HistogramBase::Inconsistency>(corruption));
76 static_cast<HistogramBase::Inconsistency>(corruption));
103 HistogramBase::Count discrepancy =
bucket_ranges.h 31 typedef std::vector<HistogramBase::Sample> Ranges;
37 HistogramBase::Sample range(size_t i) const { return ranges_[i]; }
38 void set_range(size_t i, HistogramBase::Sample value);
histogram_base.h 24 class HistogramBase;
31 // HistogramBase, add new histogram types and names below.
45 BASE_EXPORT_PRIVATE HistogramBase* DeserializeHistogramInfo(
50 class BASE_EXPORT HistogramBase {
91 explicit HistogramBase(const std::string& name);
92 virtual ~HistogramBase();
178 DISALLOW_COPY_AND_ASSIGN(HistogramBase);
  /external/chromium_org/chrome/test/base/
uma_histogram_helper.h 39 base::HistogramBase::Sample sample,
40 base::HistogramBase::Count expected_count);
46 base::HistogramBase::Sample sample,
47 base::HistogramBase::Count expected_count);
53 base::HistogramBase::Count count);
59 base::HistogramBase::Sample sample,
uma_histogram_helper.cc 25 base::HistogramBase* histogram =
54 base::HistogramBase::Sample sample,
55 base::HistogramBase::Count expected_count) {
56 base::HistogramBase* histogram =
58 EXPECT_NE(static_cast<base::HistogramBase*>(NULL), histogram)
70 base::HistogramBase::Sample sample,
71 base::HistogramBase::Count expected_count) {
72 base::HistogramBase* histogram =
74 EXPECT_NE(static_cast<base::HistogramBase*>(NULL), histogram)
85 base::HistogramBase::Count count)
    [all...]
  /external/chromium_org/components/policy/core/common/
policy_load_status.h 14 class HistogramBase;
60 base::HistogramBase* histogram_;
  /external/chromium_org/chrome/browser/extensions/activity_log/
uma_policy_browsertest.cc 83 base::HistogramBase* google_histogram = base::Histogram::FactoryGet(
85 1, 100, 50, base::HistogramBase::kNoFlags);
91 base::HistogramBase* cnn_histogram = base::Histogram::FactoryGet(
93 1, 100, 50, base::HistogramBase::kNoFlags);
128 base::HistogramBase* google_histogram = base::Histogram::FactoryGet(
130 1, 100, 50, base::HistogramBase::kNoFlags);
157 base::HistogramBase* google_histogram = base::Histogram::FactoryGet(
159 1, 100, 50, base::HistogramBase::kNoFlags);
187 base::HistogramBase* cnn_histogram = base::Histogram::FactoryGet(
189 1, 100, 50, base::HistogramBase::kNoFlags)
    [all...]
  /external/chromium_org/chrome/browser/importer/
importer_uma.cc 60 base::HistogramBase* histogram =
66 base::HistogramBase::kUmaTargetedHistogramFlag);
  /external/chromium_org/components/translate/core/browser/
translate_browser_metrics_unittest.cc 15 using base::HistogramBase;
26 HistogramBase* histogram = StatisticsRecorder::FindHistogram(key_);
68 HistogramBase::Count GetTotalCount() {
72 HistogramBase::Count count = samples_->TotalCount();
78 HistogramBase::Count GetCount(HistogramBase::Sample value) {
85 HistogramBase* histogram = StatisticsRecorder::FindHistogram(key_);
91 HistogramBase::Count GetCountWithoutSnapshot(HistogramBase::Sample value) {
94 HistogramBase::Count count = samples_->GetCount(value)
    [all...]

Completed in 328 milliseconds

1 2 3 4 5