Lines Matching refs:nodeoffset
343 const char *fdt_get_name(const void *fdt, int nodeoffset, int *lenp);
372 const struct fdt_property *fdt_get_property(const void *fdt, int nodeoffset,
374 static inline struct fdt_property *fdt_get_property_w(void *fdt, int nodeoffset, in fdt_get_property_w() argument
379 fdt_get_property(fdt, nodeoffset, name, lenp); in fdt_get_property_w()
409 const void *fdt_getprop(const void *fdt, int nodeoffset,
411 static inline void *fdt_getprop_w(void *fdt, int nodeoffset, in fdt_getprop_w() argument
414 return (void *)(uintptr_t)fdt_getprop(fdt, nodeoffset, name, lenp); in fdt_getprop_w()
429 uint32_t fdt_get_phandle(const void *fdt, int nodeoffset);
456 int fdt_get_path(const void *fdt, int nodeoffset, char *buf, int buflen);
488 int fdt_supernode_atdepth_offset(const void *fdt, int nodeoffset,
510 int fdt_node_depth(const void *fdt, int nodeoffset);
533 int fdt_parent_offset(const void *fdt, int nodeoffset);
620 int fdt_node_check_compatible(const void *fdt, int nodeoffset,
692 int fdt_setprop_inplace(void *fdt, int nodeoffset, const char *name,
723 static inline int fdt_setprop_inplace_cell(void *fdt, int nodeoffset, in fdt_setprop_inplace_cell() argument
727 return fdt_setprop_inplace(fdt, nodeoffset, name, &val, sizeof(val)); in fdt_setprop_inplace_cell()
754 int fdt_nop_property(void *fdt, int nodeoffset, const char *name);
778 int fdt_nop_node(void *fdt, int nodeoffset);
878 int fdt_set_name(void *fdt, int nodeoffset, const char *name);
908 int fdt_setprop(void *fdt, int nodeoffset, const char *name,
939 static inline int fdt_setprop_cell(void *fdt, int nodeoffset, const char *name, in fdt_setprop_cell() argument
943 return fdt_setprop(fdt, nodeoffset, name, &val, sizeof(val)); in fdt_setprop_cell()
974 #define fdt_setprop_string(fdt, nodeoffset, name, str) \ argument
975 fdt_setprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
999 int fdt_delprop(void *fdt, int nodeoffset, const char *name);
1068 int fdt_del_node(void *fdt, int nodeoffset);