Lines Matching full:nodeoffset

152     def next_node(self, nodeoffset, depth, quiet=()):
156 nodeoffset: Node offset of previous node
157 depth: The depth of the node at nodeoffset. This is used to
169 return check_err(fdt_next_node(self._fdt, nodeoffset, depth), quiet)
171 def first_subnode(self, nodeoffset, quiet=()):
175 nodeoffset: Node offset of parent node
184 return check_err(fdt_first_subnode(self._fdt, nodeoffset), quiet)
186 def next_subnode(self, nodeoffset, quiet=()):
190 nodeoffset: Node offset of previous subnode
199 return check_err(fdt_next_subnode(self._fdt, nodeoffset), quiet)
332 def get_name(self, nodeoffset):
336 nodeoffset: Offset of node to check
342 FdtException on error (e.g. nodeoffset is invalid)
344 return check_err_null(fdt_get_name(self._fdt, nodeoffset))[0]
346 def first_property_offset(self, nodeoffset, quiet=()):
350 nodeoffset: Offset to the node to check
360 return check_err(fdt_first_property_offset(self._fdt, nodeoffset),
400 def getprop(self, nodeoffset, prop_name, quiet=()):
404 nodeoffset: Node offset containing property to get
416 pdata = check_err_null(fdt_getprop(self._fdt, nodeoffset, prop_name),
422 def get_phandle(self, nodeoffset):
426 nodeoffset: Node offset to check
432 return fdt_get_phandle(self._fdt, nodeoffset)
446 def get_path(self, nodeoffset, size_hint=1024, quiet=()):
450 nodeoffset: Node offset to check
460 ret, path = fdt_get_path(self._fdt, nodeoffset, size_hint)
469 def parent_offset(self, nodeoffset, quiet=()):
473 nodeoffset: Node offset to check
482 return check_err(fdt_parent_offset(self._fdt, nodeoffset), quiet)
573 def set_name(self, nodeoffset, name, quiet=()):
577 nodeoffset: Node offset of node to update
588 return check_err(fdt_set_name(self._fdt, nodeoffset, name), quiet)
590 def setprop(self, nodeoffset, prop_name, val, quiet=()):
594 nodeoffset: Node offset containing the property to create/update
605 return check_err(fdt_setprop(self._fdt, nodeoffset, prop_name, val,
608 def setprop_u32(self, nodeoffset, prop_name, val, quiet=()):
612 nodeoffset: Node offset containing the property to create/update
623 return check_err(fdt_setprop_u32(self._fdt, nodeoffset, prop_name, val),
626 def setprop_u64(self, nodeoffset, prop_name, val, quiet=()):
630 nodeoffset: Node offset containing the property to create/update
641 return check_err(fdt_setprop_u64(self._fdt, nodeoffset, prop_name, val),
644 def setprop_str(self, nodeoffset, prop_name, val, quiet=()):
650 nodeoffset: Node offset containing the property to create/update
663 return check_err(fdt_setprop(self._fdt, nodeoffset, prop_name,
666 def delprop(self, nodeoffset, prop_name, quiet=()):
670 nodeoffset: Node offset containing property to delete
680 return check_err(fdt_delprop(self._fdt, nodeoffset, prop_name), quiet)
697 def del_node(self, nodeoffset, quiet=()):
701 nodeoffset: Offset of node to delete
709 return check_err(fdt_del_node(self._fdt, nodeoffset), quiet)
1147 int fdt_get_path(const void *fdt, int nodeoffset, char *buf, int buflen);