Home | History | Annotate | Download | only in chromeos

Lines Matching refs:stats

47 // Names of login stats files.
309 void BootTimesLoader::RecordStats(const std::string& name, const Stats& stats) {
313 RecordStatsDelayed, name, stats.uptime, stats.disk));
316 BootTimesLoader::Stats BootTimesLoader::GetCurrentStats() {
319 Stats stats;
321 file_util::ReadFileToString(kProcUptime, &stats.uptime);
322 file_util::ReadFileToString(kDiskStat, &stats.disk);
323 return stats;