Lines Matching refs:oops
202 type oops struct { struct
248 func containsCrash(output []byte, oopses []*oops, ignores []*regexp.Regexp) bool { argument
256 for _, oops := range oopses {
257 match := matchOops(output[pos:next], oops, ignores)
268 func matchOops(line []byte, oops *oops, ignores []*regexp.Regexp) int { argument
269 match := bytes.Index(line, oops.header)
273 if matchesAny(line, oops.suppressions) {
282 func extractDescription(output []byte, oops *oops, params *stackParams) ( argument
286 for _, f := range oops.formats {
332 pos := bytes.Index(output, oops.header)
429 func simpleLineParser(output []byte, oopses []*oops, params *stackParams, ignores []*regexp.Regexp)… argument
433 var oops *oops
445 oops = oops1
450 if oops != nil {
455 if oops == nil {
458 title, corrupted, _ := extractDescription(output[rep.StartPos:], oops, params)