Lines Matching refs:stats
15 // memory statistics, snapshotting the current stats of numerous histograms,
26 // transmitted some short time (1 minute?) after startup, and includes stats
37 // much in the way of user stats. The most common interlog period (delay)
53 // that memory stats are not gathered during shutdown, as gathering *might* be
75 // in a future run's initial log. (i.e., we don't lose crash stats).
78 // stats, based on the State enum specified in the state_ member. Those states
267 // a future Chrome session. Initial logs contain crash stats, and are pretty
286 // This is used to quickly log stats from child process related notifications in
722 // This is a new version, so we don't want to confuse the stats about the
779 // Get stats on use of command line.
881 // Put incremental data (histogram deltas, and realtime stats deltas) at the
1589 ChildProcessStats& stats = child_process_stats_buffer_[child_name];
1592 stats.process_launches++;
1596 stats.instances++;
1600 stats.process_crashes++;
1687 ChildProcessStats stats =
1689 if (stats.process_launches) {
1692 launches += stats.process_launches;
1695 if (stats.process_crashes) {
1698 crashes += stats.process_crashes;
1701 if (stats.instances) {
1704 instances += stats.instances;
1716 ChildProcessStats stats = cache_iter->second;
1719 if (ChildProcessInfo::PLUGIN_PROCESS != stats.process_type)
1729 stats.process_launches);
1731 stats.process_crashes);
1733 stats.instances);