Searched refs:parentfn (Results 1 – 1 of 1) sorted by relevance
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/parse/parse_py/ |
| H A D | ConfHandler.py | 56 def include(parentfn, fns, lineno, data, error_out): argument 63 parentfn = data.expand(parentfn) 67 include_single_file(parentfn, fn, lineno, data, error_out) 69 def include_single_file(parentfn, fn, lineno, data, error_out): argument 73 if parentfn == fn: # prevent infinite recursion 77 dname = os.path.dirname(parentfn) 94 raise ParseError("Could not %s file %s" % (error_out, fn), parentfn, lineno) 98 … raise ParseError("Could not %s file %s: %s" % (error_out, fn, exc.strerror), parentfn, lineno) 100 raise ParseError("Error parsing %s: %s" % (fn, exc.strerror), parentfn, lineno)
|