Lines Matching refs:nodeoffset
343 const char *fdt_get_name(const void *fdt, int nodeoffset, int *lenp);
363 int fdt_first_property_offset(const void *fdt, int nodeoffset);
426 int nodeoffset,
457 const struct fdt_property *fdt_get_property(const void *fdt, int nodeoffset,
459 static inline struct fdt_property *fdt_get_property_w(void *fdt, int nodeoffset, in fdt_get_property_w() argument
464 fdt_get_property(fdt, nodeoffset, name, lenp); in fdt_get_property_w()
512 const void *fdt_getprop_namelen(const void *fdt, int nodeoffset,
542 const void *fdt_getprop(const void *fdt, int nodeoffset,
544 static inline void *fdt_getprop_w(void *fdt, int nodeoffset, in fdt_getprop_w() argument
547 return (void *)(uintptr_t)fdt_getprop(fdt, nodeoffset, name, lenp); in fdt_getprop_w()
562 uint32_t fdt_get_phandle(const void *fdt, int nodeoffset);
615 int fdt_get_path(const void *fdt, int nodeoffset, char *buf, int buflen);
647 int fdt_supernode_atdepth_offset(const void *fdt, int nodeoffset,
669 int fdt_node_depth(const void *fdt, int nodeoffset);
692 int fdt_parent_offset(const void *fdt, int nodeoffset);
779 int fdt_node_check_compatible(const void *fdt, int nodeoffset,
851 int fdt_setprop_inplace(void *fdt, int nodeoffset, const char *name,
882 static inline int fdt_setprop_inplace_u32(void *fdt, int nodeoffset, in fdt_setprop_inplace_u32() argument
886 return fdt_setprop_inplace(fdt, nodeoffset, name, &val, sizeof(val)); in fdt_setprop_inplace_u32()
917 static inline int fdt_setprop_inplace_u64(void *fdt, int nodeoffset, in fdt_setprop_inplace_u64() argument
921 return fdt_setprop_inplace(fdt, nodeoffset, name, &val, sizeof(val)); in fdt_setprop_inplace_u64()
929 static inline int fdt_setprop_inplace_cell(void *fdt, int nodeoffset, in fdt_setprop_inplace_cell() argument
932 return fdt_setprop_inplace_u32(fdt, nodeoffset, name, val); in fdt_setprop_inplace_cell()
959 int fdt_nop_property(void *fdt, int nodeoffset, const char *name);
983 int fdt_nop_node(void *fdt, int nodeoffset);
1093 int fdt_set_name(void *fdt, int nodeoffset, const char *name);
1123 int fdt_setprop(void *fdt, int nodeoffset, const char *name,
1154 static inline int fdt_setprop_u32(void *fdt, int nodeoffset, const char *name, in fdt_setprop_u32() argument
1158 return fdt_setprop(fdt, nodeoffset, name, &val, sizeof(val)); in fdt_setprop_u32()
1189 static inline int fdt_setprop_u64(void *fdt, int nodeoffset, const char *name, in fdt_setprop_u64() argument
1193 return fdt_setprop(fdt, nodeoffset, name, &val, sizeof(val)); in fdt_setprop_u64()
1201 static inline int fdt_setprop_cell(void *fdt, int nodeoffset, const char *name, in fdt_setprop_cell() argument
1204 return fdt_setprop_u32(fdt, nodeoffset, name, val); in fdt_setprop_cell()
1235 #define fdt_setprop_string(fdt, nodeoffset, name, str) \ argument
1236 fdt_setprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
1265 int fdt_appendprop(void *fdt, int nodeoffset, const char *name,
1296 static inline int fdt_appendprop_u32(void *fdt, int nodeoffset, in fdt_appendprop_u32() argument
1300 return fdt_appendprop(fdt, nodeoffset, name, &val, sizeof(val)); in fdt_appendprop_u32()
1331 static inline int fdt_appendprop_u64(void *fdt, int nodeoffset, in fdt_appendprop_u64() argument
1335 return fdt_appendprop(fdt, nodeoffset, name, &val, sizeof(val)); in fdt_appendprop_u64()
1343 static inline int fdt_appendprop_cell(void *fdt, int nodeoffset, in fdt_appendprop_cell() argument
1346 return fdt_appendprop_u32(fdt, nodeoffset, name, val); in fdt_appendprop_cell()
1376 #define fdt_appendprop_string(fdt, nodeoffset, name, str) \ argument
1377 fdt_appendprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
1401 int fdt_delprop(void *fdt, int nodeoffset, const char *name);
1470 int fdt_del_node(void *fdt, int nodeoffset);