Home
last modified time | relevance | path

Searched refs:parentfn (Results 1 – 1 of 1) sorted by relevance

/openbmc/openbmc/poky/bitbake/lib/bb/parse/parse_py/
H A DConfHandler.py57 def include(parentfn, fns, lineno, data, error_out): argument
64 parentfn = data.expand(parentfn)
68 include_single_file(parentfn, fn, lineno, data, error_out)
70 def include_single_file(parentfn, fn, lineno, data, error_out): argument
74 if parentfn == fn: # prevent infinite recursion
78 dname = os.path.dirname(parentfn)
95 raise ParseError("Could not %s file %s" % (error_out, fn), parentfn, lineno)
99 … raise ParseError("Could not %s file %s: %s" % (error_out, fn, exc.strerror), parentfn, lineno)
101 raise ParseError("Error parsing %s: %s" % (fn, exc.strerror), parentfn, lineno)