Lines Matching refs:fn
55 func (ac *accessCache) update(fn string, hash [sha1.Size]byte, st fileState) string {
61 rm, present := ac.m[fn]
66 return fmt.Sprintf("%s was removed after the previous read", fn)
68 ac.m[fn].State = fileInconsistent
69 return fmt.Sprintf("%s was modified after the previous read", fn)
74 ac.m[fn].State = fileInconsistent
75 return fmt.Sprintf("%s was created after the previous read", fn)
82 ac.m[fn] = &accessedMakefile{
83 Filename: fn,
516 for _, fn := range files {
517 fn = trimLeadingCurdir(fn)
518 …if IgnoreOptionalInclude != "" && ast.op == "-include" && matchPattern(fn, IgnoreOptionalInclude) {
521 mk, hash, err := makefileCache.parse(fn)
526 msg := ev.cache.update(fn, hash, fileNotExists)
532 msg := ev.cache.update(fn, hash, fileExists)
536 err = ev.evalIncludeFile(fn, mk)