Lines Matching +full:- +full:- +full:quiet

2  * pylibfdt - Flat Device Tree manipulation in Python
22 * MA 02110-1301 USA
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,
103 fdt_err: Error number (-ve)
110 def check_err(val, quiet=()):
111 """Raise an error if the return value is -ve
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
169 (e.g. -NOTFOUND).
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)
338 Value of property as a bytearray, or -ve error number
344 quiet)
401 fdt_string(fdt1, fdt32_to_cpu($1->nameoff)));
403 (const char *)($1 + 1), fdt32_to_cpu($1->len));