Lines Matching refs:crash
79 crash, crashKey, err := findCrashForBug(c, bug)
83 if reason := checkTestJob(c, bug, bugReporting, crash, repo, branch); reason != "" {
87 manager := crash.Manager
166 func checkTestJob(c context.Context, bug *Bug, bugReporting *BugReporting, crash *Crash,
169 case crash.ReproC == 0 && crash.ReproSyz == 0:
175 case crash.ReproC == 0 && crash.ReproSyz == 0:
202 crash := new(Crash)
203 if err := datastore.Get(c, crashKey, crash); err != nil {
207 build, err := loadBuild(c, job.Namespace, crash.BuildID)
216 reproC, _, err := getText(c, textReproC, crash.ReproC)
220 reproSyz, _, err := getText(c, textReproSyz, crash.ReproSyz)
259 ReproOpts: crash.ReproOpts,