Lines Matching refs:nodeoffset
381 const char *fdt_get_name(const void *fdt, int nodeoffset, int *lenp);
401 int fdt_first_property_offset(const void *fdt, int nodeoffset);
464 int nodeoffset,
495 const struct fdt_property *fdt_get_property(const void *fdt, int nodeoffset,
497 static inline struct fdt_property *fdt_get_property_w(void *fdt, int nodeoffset, in fdt_get_property_w() argument
502 fdt_get_property(fdt, nodeoffset, name, lenp); in fdt_get_property_w()
550 const void *fdt_getprop_namelen(const void *fdt, int nodeoffset,
580 const void *fdt_getprop(const void *fdt, int nodeoffset,
582 static inline void *fdt_getprop_w(void *fdt, int nodeoffset, in fdt_getprop_w() argument
585 return (void *)(uintptr_t)fdt_getprop(fdt, nodeoffset, name, lenp); in fdt_getprop_w()
600 uint32_t fdt_get_phandle(const void *fdt, int nodeoffset);
653 int fdt_get_path(const void *fdt, int nodeoffset, char *buf, int buflen);
685 int fdt_supernode_atdepth_offset(const void *fdt, int nodeoffset,
707 int fdt_node_depth(const void *fdt, int nodeoffset);
730 int fdt_parent_offset(const void *fdt, int nodeoffset);
817 int fdt_node_check_compatible(const void *fdt, int nodeoffset,
903 int fdt_address_cells(const void *fdt, int nodeoffset);
923 int fdt_size_cells(const void *fdt, int nodeoffset);
958 int fdt_setprop_inplace(void *fdt, int nodeoffset, const char *name,
989 static inline int fdt_setprop_inplace_u32(void *fdt, int nodeoffset, in fdt_setprop_inplace_u32() argument
993 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u32()
1024 static inline int fdt_setprop_inplace_u64(void *fdt, int nodeoffset, in fdt_setprop_inplace_u64() argument
1028 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u64()
1036 static inline int fdt_setprop_inplace_cell(void *fdt, int nodeoffset, in fdt_setprop_inplace_cell() argument
1039 return fdt_setprop_inplace_u32(fdt, nodeoffset, name, val); in fdt_setprop_inplace_cell()
1066 int fdt_nop_property(void *fdt, int nodeoffset, const char *name);
1090 int fdt_nop_node(void *fdt, int nodeoffset);
1201 int fdt_set_name(void *fdt, int nodeoffset, const char *name);
1231 int fdt_setprop(void *fdt, int nodeoffset, const char *name,
1262 static inline int fdt_setprop_u32(void *fdt, int nodeoffset, const char *name, in fdt_setprop_u32() argument
1266 return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_u32()
1297 static inline int fdt_setprop_u64(void *fdt, int nodeoffset, const char *name, in fdt_setprop_u64() argument
1301 return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_u64()
1309 static inline int fdt_setprop_cell(void *fdt, int nodeoffset, const char *name, in fdt_setprop_cell() argument
1312 return fdt_setprop_u32(fdt, nodeoffset, name, val); in fdt_setprop_cell()
1343 #define fdt_setprop_string(fdt, nodeoffset, name, str) \ argument
1344 fdt_setprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
1373 int fdt_appendprop(void *fdt, int nodeoffset, const char *name,
1404 static inline int fdt_appendprop_u32(void *fdt, int nodeoffset, in fdt_appendprop_u32() argument
1408 return fdt_appendprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_appendprop_u32()
1439 static inline int fdt_appendprop_u64(void *fdt, int nodeoffset, in fdt_appendprop_u64() argument
1443 return fdt_appendprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_appendprop_u64()
1451 static inline int fdt_appendprop_cell(void *fdt, int nodeoffset, in fdt_appendprop_cell() argument
1454 return fdt_appendprop_u32(fdt, nodeoffset, name, val); in fdt_appendprop_cell()
1484 #define fdt_appendprop_string(fdt, nodeoffset, name, str) \ argument
1485 fdt_appendprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
1509 int fdt_delprop(void *fdt, int nodeoffset, const char *name);
1578 int fdt_del_node(void *fdt, int nodeoffset);