Lines Matching refs:Stats
56 stats *Stats
173 stats: new(Stats),
223 executed := mgr.stats.execTotal.get()
224 crashes := mgr.stats.crashes.get()
259 for k, v := range mgr.stats.all() {
299 stats *repro.Stats
365 res, stats, err := repro.Run(crash.Output, mgr.cfg, mgr.reporter, mgr.vmPool, vmIndexes)
366 reproDone <- &ReproResult{vmIndexes, crash.Title, res, stats, err, crash.hub}
425 mgr.saveFailedRepro(res.title0, res.stats)
428 mgr.saveRepro(res.res, res.stats, res.hub)
599 mgr.stats.crashSuppressed.inc()
611 mgr.stats.crashes.inc()
615 mgr.stats.crashTypes.inc()
713 func (mgr *Manager) saveFailedRepro(desc string, stats *repro.Stats) {
730 saveReproStats(name, stats)
736 func (mgr *Manager) saveRepro(res *repro.Result, stats *repro.Stats, hub bool) {
811 saveReproStats(filepath.Join(dir, "repro.stats"), stats)
814 func saveReproStats(filename string, stats *repro.Stats) {
816 if stats != nil {
819 stats.ExtractProgTime, stats.MinimizeProgTime,
820 stats.SimplifyProgTime, stats.ExtractCTime, stats.SimplifyCTime, stats.Log)
890 mgr.stats.vmRestarts.inc()
966 mgr.stats.newInputs.inc()
1001 for k, v := range a.Stats {
1004 mgr.stats.execTotal.add(int(v))
1123 crashes := mgr.stats.crashes.get()
1124 execs := mgr.stats.execTotal.get()
1138 log.Logf(0, "faield to upload dashboard stats: %v", err)