Home | History | Annotate | Download | only in syz-manager

Lines Matching refs:crash

35 	http.HandleFunc("/crash", mgr.httpCrash)
167 crash := readCrash(mgr.cfg.Workdir, crashID, nil, true)
168 if crash == nil {
169 http.Error(w, fmt.Sprintf("failed to read crash info"), http.StatusInternalServerError)
172 if err := crashTemplate.Execute(w, crash); err != nil {
403 crash := readCrash(workdir, dir, repros, false)
404 if crash != nil {
405 crashTypes = append(crashTypes, crash)
463 for _, crash := range crashes {
464 index := strconv.Itoa(crash.Index)
465 crash.Log = filepath.Join("crashes", dir, "log"+index)
466 if stat, err := os.Stat(filepath.Join(workdir, crash.Log)); err == nil {
467 crash.Time = stat.ModTime()
468 crash.TimeStr = crash.Time.Format(dateFormat)
471 crash.Tag = string(tag)
474 crash.Report = reportFile
630 <td><a href="/crash?id={{$c.ID}}">{{$c.Description}}</a></td>