Lines Matching refs:nodeoffset
165 def first_property_offset(self, nodeoffset, quiet=()):
169 nodeoffset: Offset to the node to check
179 return check_err(fdt_first_property_offset(self._fdt, nodeoffset),
199 def get_name(self, nodeoffset):
203 nodeoffset: Offset of node to check
209 FdtException on error (e.g. nodeoffset is invalid)
211 return check_err_null(fdt_get_name(self._fdt, nodeoffset))[0]
233 def first_subnode(self, nodeoffset, quiet=()):
237 nodeoffset: Node offset of parent node
246 return check_err(fdt_first_subnode(self._fdt, nodeoffset), quiet)
248 def next_subnode(self, nodeoffset, quiet=()):
252 nodeoffset: Node offset of previous subnode
261 return check_err(fdt_next_subnode(self._fdt, nodeoffset), quiet)
292 def delprop(self, nodeoffset, prop_name):
296 nodeoffset: Node offset containing property to delete
302 return check_err(fdt_delprop(self._fdt, nodeoffset, prop_name))
304 def getprop(self, nodeoffset, prop_name, quiet=()):
308 nodeoffset: Node offset containing property to get
318 pdata = check_err_null(fdt_getprop(self._fdt, nodeoffset, prop_name),
324 def get_phandle(self, nodeoffset):
328 nodeoffset: Node offset to check
334 return fdt_get_phandle(self._fdt, nodeoffset)
336 def parent_offset(self, nodeoffset, quiet=()):
340 nodeoffset: Node offset to check
349 return check_err(fdt_parent_offset(self._fdt, nodeoffset), quiet)