/openbmc/openbmc/poky/bitbake/lib/bb/parse/parse_py/ |
H A D | BBHandler.py | 19 from .. import resolve_file, ast, logger, ParseError 71 raise ParseError("Could not inherit file %s" % (file), fn, lineno) 80 raise ParseError("Could not inherit file %s: %s" % (fn, exc.strerror), fn, lineno) 105 … raise ParseError("Unparsed lines %s: %s" % (filename, str(__residue__)), filename, lineno) 107 …raise ParseError("Unparsed lines from unclosed function %s: %s" % (filename, str(__body__)), filen… 153 …raise ParseError("Shell function %s is never closed" % __infunc__[0], __infunc__[1], __infunc__[2]) 155 raise ParseError("Leftover unparsed (incomplete?) data %s from %s" % __residue__, fn) 263 …raise ParseError("Task name '%s' contains a keyword which is not recommended/supported.\nPlease re…
|
H A D | ConfHandler.py | 18 from bb.parse import ParseError, resolve_file, ast, logger, handle 97 raise ParseError("Could not %s file %s" % (error_out, fn), parentfn, lineno) 101 … raise ParseError("Could not %s file %s: %s" % (error_out, fn, exc.strerror), parentfn, lineno) 103 raise ParseError("Error parsing %s: %s" % (fn, exc.strerror), parentfn, lineno) 212 raise ParseError("unparsed line: '%s'" % s, fn, lineno);
|
/openbmc/openbmc/poky/bitbake/lib/bb/parse/ |
H A D | __init__.py | 29 class ParseError(Exception): class 120 raise ParseError("not a BitBake file", fn) 161 …raise ParseError("Unable to generate default variables from filename (too many underscores)", mypk…
|
/openbmc/intel-ipmi-oem/ |
H A D | generate-allowlist.py | 25 class ParseError(Error): class 43 raise ParseError(data)
|
/openbmc/openbmc/poky/scripts/pybootchartgui/pybootchartgui/ |
H A D | parsing.py | 60 … raise ParseError("empty state: '%s' does not contain a valid bootchart" % ", ".join(paths)) 255 class ParseError(Exception): class 282 raise ParseError('expected a timed-block consisting a timestamp followed by data lines') 286 … raise ParseError("expected a timed-block, but timestamp '%s' is not an integer" % lines[0]) 530 raise ParseError("Invalid meminfo line \"%s\"" % line) 552 raise ParseError("Invalid monitor_disk line \"%s\"" % line) 815 raise ParseError("error: could not read tarfile '%s': %s." % (path, error))
|
H A D | main.py | 177 except parsing.ParseError as ex:
|
H A D | main.py.in | 177 except parsing.ParseError as ex:
|
/openbmc/bmcweb/include/ |
H A D | http_utility.hpp | 143 ParseError, enumerator 180 return Encoding::ParseError; in getPreferredEncoding()
|
/openbmc/openbmc/poky/bitbake/lib/bb/tests/ |
H A D | parse.py | 59 with self.assertRaises(bb.parse.ParseError): 303 with self.assertRaises(bb.parse.ParseError): 430 with self.assertRaises(bb.parse.ParseError) as error:
|
/openbmc/openpower-debug-collector/dump/ |
H A D | dump_collect_main.cpp | 49 catch (const CLI::ParseError& e) in main()
|
/openbmc/openbmc/poky/meta/classes/ |
H A D | report-error.bbclass | 131 elif isinstance(e, bb.event.ParseError): 159 …t.BuildStarted bb.event.BuildCompleted bb.build.TaskFailed bb.event.NoProvider bb.event.ParseError"
|
/openbmc/openbmc/poky/bitbake/doc/bitbake-user-manual/ |
H A D | bitbake-user-manual-hello.rst | 244 > raise ParseError("Could not inherit file %s" % (file), fn, lineno) 246 …bb.parse.ParseError: ParseError in configuration INHERITs: Could not inherit file classes/base.bbc…
|
/openbmc/openbmc/poky/bitbake/lib/bb/ |
H A D | event.py | 862 class ParseError(Event): class
|
H A D | cooker.py | 2187 bb.event.fire(bb.event.ParseError(eventmsg), self.cfgdata) 2273 … raise bb.parse.ParseError("Not all recipes parsed, parser thread killed/died? Exiting.", None) 2306 except bb.parse.ParseError as exc:
|
/openbmc/openbmc/poky/bitbake/ |
H A D | ChangeLog | 11 - Raise ParseError for filenames with multiple underscores instead of infinitely looping (#2062)
|