Lines Matching full:quiet
82 # QUIET_ALL can be passed as the 'quiet' parameter to avoid exceptions
86 # Pass this as the 'quiet' parameter to return -ENOTFOUND on NOTFOUND errors,
110 def check_err(val, quiet=()):
117 quiet: Errors to ignore (empty to raise on all errors)
126 if -val not in quiet:
130 def check_err_null(val, quiet=()):
138 quiet: Errors to ignore (empty to raise on all errors)
145 is not in @quiet.
150 if -val not in quiet:
166 behaviour a 'quiet' parameter is provided for some functions. This
175 def path_offset(self, path, quiet=()):
180 quiet: Errors to ignore (empty to raise on all errors)
188 return check_err(fdt_path_offset(self._fdt, path), quiet)
190 def first_property_offset(self, nodeoffset, quiet=()):
195 quiet: Errors to ignore (empty to raise on all errors)
205 quiet)
207 def next_property_offset(self, prop_offset, quiet=()):
212 quiet: Errors to ignore (empty to raise on all errors)
222 quiet)
238 def get_property_by_offset(self, prop_offset, quiet=()):
243 quiet: Errors to ignore (empty to raise on all errors)
253 fdt_get_property_by_offset(self._fdt, prop_offset), quiet)
258 def first_subnode(self, nodeoffset, quiet=()):
263 quiet: Errors to ignore (empty to raise on all errors)
271 return check_err(fdt_first_subnode(self._fdt, nodeoffset), quiet)
273 def next_subnode(self, nodeoffset, quiet=()):
278 quiet: Errors to ignore (empty to raise on all errors)
286 return check_err(fdt_next_subnode(self._fdt, nodeoffset), quiet)
304 def pack(self, quiet=()):
310 quiet: Errors to ignore (empty to raise on all errors)
315 return check_err(fdt_pack(self._fdt), quiet)
329 def getprop(self, nodeoffset, prop_name, quiet=()):
335 quiet: Errors to ignore (empty to raise on all errors)
344 quiet)