Home | History | Annotate | Download | only in pylibfdt

Lines Matching refs:nodeoffset

190     def first_property_offset(self, nodeoffset, quiet=()):
194 nodeoffset: Offset to the node to check
204 return check_err(fdt_first_property_offset(self._fdt, nodeoffset),
224 def get_name(self, nodeoffset):
228 nodeoffset: Offset of node to check
234 FdtException on error (e.g. nodeoffset is invalid)
236 return check_err_null(fdt_get_name(self._fdt, nodeoffset))[0]
258 def first_subnode(self, nodeoffset, quiet=()):
262 nodeoffset: Node offset of parent node
271 return check_err(fdt_first_subnode(self._fdt, nodeoffset), quiet)
273 def next_subnode(self, nodeoffset, quiet=()):
277 nodeoffset: Node offset of previous subnode
286 return check_err(fdt_next_subnode(self._fdt, nodeoffset), quiet)
317 def delprop(self, nodeoffset, prop_name):
321 nodeoffset: Node offset containing property to delete
327 return check_err(fdt_delprop(self._fdt, nodeoffset, prop_name))
329 def getprop(self, nodeoffset, prop_name, quiet=()):
333 nodeoffset: Node offset containing property to get
343 pdata = check_err_null(fdt_getprop(self._fdt, nodeoffset, prop_name),