Lines Matching refs:PerfCounters
58 const bool PerfCounters::kSupported = true;
62 bool PerfCounters::Initialize() { in Initialize()
70 bool PerfCounters::IsCounterSupported(const std::string& name) { in IsCounterSupported()
83 PerfCounters PerfCounters::Create( in Create()
230 return PerfCounters(std::move(valid_names), std::move(counter_ids), in Create()
234 void PerfCounters::CloseCounters() const { in CloseCounters()
248 const bool PerfCounters::kSupported = false;
250 bool PerfCounters::Initialize() { return false; } in Initialize()
252 bool PerfCounters::IsCounterSupported(const std::string&) { return false; } in IsCounterSupported()
254 PerfCounters PerfCounters::Create( in Create()
262 void PerfCounters::CloseCounters() const {} in CloseCounters()
268 counters_ = PerfCounters::Create(counter_names); in PerfCountersMeasurement()
271 PerfCounters& PerfCounters::operator=(PerfCounters&& other) noexcept { in operator =()