Searched refs:ns_per_user_hz_ (Results 1 – 2 of 2) sorted by relevance
80 ns_per_user_hz_ = 1000000000ull / static_cast<uint64_t>(sysconf(_SC_CLK_TCK)); in SysStatsDataSource()250 cpu_stat->set_user_ns(cpu_times[0] * ns_per_user_hz_); in ReadStat()251 cpu_stat->set_user_ice_ns(cpu_times[1] * ns_per_user_hz_); in ReadStat()252 cpu_stat->set_system_mode_ns(cpu_times[2] * ns_per_user_hz_); in ReadStat()253 cpu_stat->set_idle_ns(cpu_times[3] * ns_per_user_hz_); in ReadStat()254 cpu_stat->set_io_wait_ns(cpu_times[4] * ns_per_user_hz_); in ReadStat()255 cpu_stat->set_irq_ns(cpu_times[5] * ns_per_user_hz_); in ReadStat()256 cpu_stat->set_softirq_ns(cpu_times[6] * ns_per_user_hz_); in ReadStat()
63 void set_ns_per_user_hz_for_testing(uint64_t ns) { ns_per_user_hz_ = ns; } in set_ns_per_user_hz_for_testing()92 uint64_t ns_per_user_hz_ = 0; variable