Lines Matching full:errors
24 # the ordered list of errors
25 errors = list()
36 while len(errors) < len(i_errors):
38 if error in errors:
41 if (not i_parents[error]) or (i_parents[error] in errors):
44 errors.append(error)
46 # no inherited errors
47 errors = i_errors
49 return errors
67 # Ex: file xyz/openbmc_project/Error/Callout/Device.errors.yaml
74 file for file in files if file.endswith(".errors.yaml")
81 for files in [file for file in files if file.endswith(".errors.yaml")]:
89 # <Interface>.errors.yaml with <Interface>.metadata.yaml
90 meta_yaml = i_error_yaml_file.replace("errors", "metadata")
129 errors = list() # Main error codes
161 errors,
171 if not check_error_inheritance(errors, parents):
175 errors = order_inherited_errors(errors, parents)
184 errors=errors,
210 errors,
220 # for all the errors in error yaml file
229 errors.append(fullname)
259 # Put all errors in meta[] even the meta is empty
260 # so that child errors could inherits such error without meta
276 # for i in errors:
277 # print "ERROR: " + errors[i]
278 # print " MSG: " + error_msg[errors[i]]
279 # print " LVL: " + error_lvl[errors[i]]
299 default="elog-errors.hpp",
300 help="output hpp to generate, elog-errors.hpp default",