Home
last modified time | relevance | path

Searched refs:stat_counters_ (Results 1 – 2 of 2) sorted by relevance

/external/perfetto/src/tracing/core/
Dsys_stats_config.cc50 (stat_counters_ == other.stat_counters_); in operator ==()
90 stat_counters_.clear(); in FromProto()
92 stat_counters_.emplace_back(); in FromProto()
94 sizeof(stat_counters_.back()) == sizeof(proto.stat_counters(0)), in FromProto()
96 stat_counters_.back() = in FromProto()
97 static_cast<decltype(stat_counters_)::value_type>(field); in FromProto()
135 for (const auto& it : stat_counters_) { in ToProto()
/external/perfetto/include/perfetto/tracing/core/
Dsys_stats_config.h244 return static_cast<int>(stat_counters_.size()); in stat_counters_size()
247 return stat_counters_; in stat_counters()
249 std::vector<StatCounters>* mutable_stat_counters() { return &stat_counters_; } in mutable_stat_counters()
250 void clear_stat_counters() { stat_counters_.clear(); } in clear_stat_counters()
252 stat_counters_.emplace_back(); in add_stat_counters()
253 return &stat_counters_.back(); in add_stat_counters()
262 std::vector<StatCounters> stat_counters_; variable