Lines Matching refs:quiet
40 # QUIET_ALL can be passed as the 'quiet' parameter to avoid exceptions
44 # Pass this as the 'quiet' parameter to return -ENOTFOUND on NOTFOUND errors,
68 def check_err(val, quiet=()):
75 quiet: Errors to ignore (empty to raise on all errors)
84 if -val not in quiet:
88 def check_err_null(val, quiet=()):
96 quiet: Errors to ignore (empty to raise on all errors)
103 is not in @quiet.
108 if -val not in quiet:
124 behaviour a 'quiet' parameter is provided for some functions. This
133 def subnode_offset(self, parentoffset, name, quiet=()):
139 quiet: Errors to ignore (empty to raise on all errors)
148 quiet)
150 def path_offset(self, path, quiet=()):
155 quiet: Errors to ignore (empty to raise on all errors)
163 return check_err(fdt_path_offset(self._fdt, path), quiet)
165 def first_property_offset(self, nodeoffset, quiet=()):
170 quiet: Errors to ignore (empty to raise on all errors)
180 quiet)
182 def next_property_offset(self, prop_offset, quiet=()):
187 quiet: Errors to ignore (empty to raise on all errors)
197 quiet)
213 def get_property_by_offset(self, prop_offset, quiet=()):
218 quiet: Errors to ignore (empty to raise on all errors)
228 fdt_get_property_by_offset(self._fdt, prop_offset), quiet)
233 def first_subnode(self, nodeoffset, quiet=()):
238 quiet: Errors to ignore (empty to raise on all errors)
246 return check_err(fdt_first_subnode(self._fdt, nodeoffset), quiet)
248 def next_subnode(self, nodeoffset, quiet=()):
253 quiet: Errors to ignore (empty to raise on all errors)
261 return check_err(fdt_next_subnode(self._fdt, nodeoffset), quiet)
279 def pack(self, quiet=()):
285 quiet: Errors to ignore (empty to raise on all errors)
290 return check_err(fdt_pack(self._fdt), quiet)
304 def getprop(self, nodeoffset, prop_name, quiet=()):
310 quiet: Errors to ignore (empty to raise on all errors)
319 quiet)
336 def parent_offset(self, nodeoffset, quiet=()):
341 quiet: Errors to ignore (empty to raise on all errors)
349 return check_err(fdt_parent_offset(self._fdt, nodeoffset), quiet)
351 def node_offset_by_phandle(self, phandle, quiet=()):
356 quiet: Errors to ignore (empty to raise on all errors)
364 return check_err(fdt_node_offset_by_phandle(self._fdt, phandle), quiet)