Home
last modified time | relevance | path

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

/external/perfetto/src/traced/probes/sys_stats/
Dsys_stats_data_source.cc272 std::array<uint64_t, 7> cpu_times{}; in ReadStat() local
273 for (size_t i = 0; i < cpu_times.size() && words.Next(); i++) { in ReadStat()
274 cpu_times[i] = in ReadStat()
279 cpu_stat->set_user_ns(cpu_times[0] * ns_per_user_hz_); in ReadStat()
280 cpu_stat->set_user_ice_ns(cpu_times[1] * ns_per_user_hz_); in ReadStat()
281 cpu_stat->set_system_mode_ns(cpu_times[2] * ns_per_user_hz_); in ReadStat()
282 cpu_stat->set_idle_ns(cpu_times[3] * ns_per_user_hz_); in ReadStat()
283 cpu_stat->set_io_wait_ns(cpu_times[4] * ns_per_user_hz_); in ReadStat()
284 cpu_stat->set_irq_ns(cpu_times[5] * ns_per_user_hz_); in ReadStat()
285 cpu_stat->set_softirq_ns(cpu_times[6] * ns_per_user_hz_); in ReadStat()