Lines Matching refs:nodeoffset

444 const char *fdt_get_name(const void *fdt, int nodeoffset, int *lenp);
464 int fdt_first_property_offset(const void *fdt, int nodeoffset);
554 int nodeoffset,
586 const struct fdt_property *fdt_get_property(const void *fdt, int nodeoffset,
588 static inline struct fdt_property *fdt_get_property_w(void *fdt, int nodeoffset, in fdt_get_property_w() argument
593 fdt_get_property(fdt, nodeoffset, name, lenp); in fdt_get_property_w()
641 const void *fdt_getprop_namelen(const void *fdt, int nodeoffset,
643 static inline void *fdt_getprop_namelen_w(void *fdt, int nodeoffset, in fdt_getprop_namelen_w() argument
647 return (void *)(uintptr_t)fdt_getprop_namelen(fdt, nodeoffset, name, in fdt_getprop_namelen_w()
679 const void *fdt_getprop(const void *fdt, int nodeoffset,
681 static inline void *fdt_getprop_w(void *fdt, int nodeoffset, in fdt_getprop_w() argument
684 return (void *)(uintptr_t)fdt_getprop(fdt, nodeoffset, name, lenp); in fdt_getprop_w()
699 uint32_t fdt_get_phandle(const void *fdt, int nodeoffset);
752 int fdt_get_path(const void *fdt, int nodeoffset, char *buf, int buflen);
784 int fdt_supernode_atdepth_offset(const void *fdt, int nodeoffset,
806 int fdt_node_depth(const void *fdt, int nodeoffset);
829 int fdt_parent_offset(const void *fdt, int nodeoffset);
916 int fdt_node_check_compatible(const void *fdt, int nodeoffset,
980 int fdt_stringlist_count(const void *fdt, int nodeoffset, const char *property);
1001 int fdt_stringlist_search(const void *fdt, int nodeoffset, const char *property,
1028 const char *fdt_stringlist_get(const void *fdt, int nodeoffset,
1065 int fdt_address_cells(const void *fdt, int nodeoffset);
1086 int fdt_size_cells(const void *fdt, int nodeoffset);
1109 int fdt_setprop_inplace_namelen_partial(void *fdt, int nodeoffset,
1142 int fdt_setprop_inplace(void *fdt, int nodeoffset, const char *name,
1173 static inline int fdt_setprop_inplace_u32(void *fdt, int nodeoffset, in fdt_setprop_inplace_u32() argument
1177 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u32()
1208 static inline int fdt_setprop_inplace_u64(void *fdt, int nodeoffset, in fdt_setprop_inplace_u64() argument
1212 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u64()
1220 static inline int fdt_setprop_inplace_cell(void *fdt, int nodeoffset, in fdt_setprop_inplace_cell() argument
1223 return fdt_setprop_inplace_u32(fdt, nodeoffset, name, val); in fdt_setprop_inplace_cell()
1250 int fdt_nop_property(void *fdt, int nodeoffset, const char *name);
1274 int fdt_nop_node(void *fdt, int nodeoffset);
1385 int fdt_set_name(void *fdt, int nodeoffset, const char *name);
1415 int fdt_setprop(void *fdt, int nodeoffset, const char *name,
1446 static inline int fdt_setprop_u32(void *fdt, int nodeoffset, const char *name, in fdt_setprop_u32() argument
1450 return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_u32()
1481 static inline int fdt_setprop_u64(void *fdt, int nodeoffset, const char *name, in fdt_setprop_u64() argument
1485 return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_u64()
1493 static inline int fdt_setprop_cell(void *fdt, int nodeoffset, const char *name, in fdt_setprop_cell() argument
1496 return fdt_setprop_u32(fdt, nodeoffset, name, val); in fdt_setprop_cell()
1527 #define fdt_setprop_string(fdt, nodeoffset, name, str) \ argument
1528 fdt_setprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
1557 #define fdt_setprop_empty(fdt, nodeoffset, name) \ argument
1558 fdt_setprop((fdt), (nodeoffset), (name), NULL, 0)
1587 int fdt_appendprop(void *fdt, int nodeoffset, const char *name,
1618 static inline int fdt_appendprop_u32(void *fdt, int nodeoffset, in fdt_appendprop_u32() argument
1622 return fdt_appendprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_appendprop_u32()
1653 static inline int fdt_appendprop_u64(void *fdt, int nodeoffset, in fdt_appendprop_u64() argument
1657 return fdt_appendprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_appendprop_u64()
1665 static inline int fdt_appendprop_cell(void *fdt, int nodeoffset, in fdt_appendprop_cell() argument
1668 return fdt_appendprop_u32(fdt, nodeoffset, name, val); in fdt_appendprop_cell()
1698 #define fdt_appendprop_string(fdt, nodeoffset, name, str) \ argument
1699 fdt_appendprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
1723 int fdt_delprop(void *fdt, int nodeoffset, const char *name);
1794 int fdt_del_node(void *fdt, int nodeoffset);