Lines Matching refs:quiet
39 # QUIET_ALL can be passed as the 'quiet' parameter to avoid exceptions
43 # Pass this as the 'quiet' parameter to return -ENOTFOUND on NOTFOUND errors,
67 def check_err(val, quiet=()):
74 quiet: Errors to ignore (empty to raise on all errors)
83 if -val not in quiet:
87 def check_err_null(val, quiet=()):
95 quiet: Errors to ignore (empty to raise on all errors)
102 is not in @quiet.
107 if -val not in quiet:
123 behaviour a 'quiet' parameter is provided for some functions. This
132 def subnode_offset(self, parentoffset, name, quiet=()):
138 quiet: Errors to ignore (empty to raise on all errors)
147 quiet)
149 def path_offset(self, path, quiet=()):
154 quiet: Errors to ignore (empty to raise on all errors)
162 return check_err(fdt_path_offset(self._fdt, path), quiet)
164 def first_property_offset(self, nodeoffset, quiet=()):
169 quiet: Errors to ignore (empty to raise on all errors)
179 quiet)
181 def next_property_offset(self, prop_offset, quiet=()):
186 quiet: Errors to ignore (empty to raise on all errors)
196 quiet)
212 def get_property_by_offset(self, prop_offset, quiet=()):
217 quiet: Errors to ignore (empty to raise on all errors)
227 fdt_get_property_by_offset(self._fdt, prop_offset), quiet)
232 def first_subnode(self, nodeoffset, quiet=()):
237 quiet: Errors to ignore (empty to raise on all errors)
245 return check_err(fdt_first_subnode(self._fdt, nodeoffset), quiet)
247 def next_subnode(self, nodeoffset, quiet=()):
252 quiet: Errors to ignore (empty to raise on all errors)
260 return check_err(fdt_next_subnode(self._fdt, nodeoffset), quiet)
278 def pack(self, quiet=()):
284 quiet: Errors to ignore (empty to raise on all errors)
289 return check_err(fdt_pack(self._fdt), quiet)
303 def getprop(self, nodeoffset, prop_name, quiet=()):
309 quiet: Errors to ignore (empty to raise on all errors)
318 quiet)
335 def parent_offset(self, nodeoffset, quiet=()):
340 quiet: Errors to ignore (empty to raise on all errors)
348 return check_err(fdt_parent_offset(self._fdt, nodeoffset), quiet)
350 def node_offset_by_phandle(self, phandle, quiet=()):
355 quiet: Errors to ignore (empty to raise on all errors)
363 return check_err(fdt_node_offset_by_phandle(self._fdt, phandle), quiet)