Lines Matching refs:nodeoffset
449 const char *fdt_get_name(const void *fdt, int nodeoffset, int *lenp);
469 int fdt_first_property_offset(const void *fdt, int nodeoffset);
563 int nodeoffset,
596 const struct fdt_property *fdt_get_property(const void *fdt, int nodeoffset,
598 static inline struct fdt_property *fdt_get_property_w(void *fdt, int nodeoffset, in fdt_get_property_w() argument
603 fdt_get_property(fdt, nodeoffset, name, lenp); in fdt_get_property_w()
654 const void *fdt_getprop_namelen(const void *fdt, int nodeoffset,
656 static inline void *fdt_getprop_namelen_w(void *fdt, int nodeoffset, in fdt_getprop_namelen_w() argument
660 return (void *)(uintptr_t)fdt_getprop_namelen(fdt, nodeoffset, name, in fdt_getprop_namelen_w()
693 const void *fdt_getprop(const void *fdt, int nodeoffset,
695 static inline void *fdt_getprop_w(void *fdt, int nodeoffset, in fdt_getprop_w() argument
698 return (void *)(uintptr_t)fdt_getprop(fdt, nodeoffset, name, lenp); in fdt_getprop_w()
713 uint32_t fdt_get_phandle(const void *fdt, int nodeoffset);
768 int fdt_get_path(const void *fdt, int nodeoffset, char *buf, int buflen);
800 int fdt_supernode_atdepth_offset(const void *fdt, int nodeoffset,
822 int fdt_node_depth(const void *fdt, int nodeoffset);
845 int fdt_parent_offset(const void *fdt, int nodeoffset);
932 int fdt_node_check_compatible(const void *fdt, int nodeoffset,
996 int fdt_stringlist_count(const void *fdt, int nodeoffset, const char *property);
1017 int fdt_stringlist_search(const void *fdt, int nodeoffset, const char *property,
1044 const char *fdt_stringlist_get(const void *fdt, int nodeoffset,
1081 int fdt_address_cells(const void *fdt, int nodeoffset);
1102 int fdt_size_cells(const void *fdt, int nodeoffset);
1126 int fdt_setprop_inplace_namelen_partial(void *fdt, int nodeoffset,
1161 int fdt_setprop_inplace(void *fdt, int nodeoffset, const char *name,
1193 static inline int fdt_setprop_inplace_u32(void *fdt, int nodeoffset, in fdt_setprop_inplace_u32() argument
1197 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u32()
1228 static inline int fdt_setprop_inplace_u64(void *fdt, int nodeoffset, in fdt_setprop_inplace_u64() argument
1232 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u64()
1240 static inline int fdt_setprop_inplace_cell(void *fdt, int nodeoffset, in fdt_setprop_inplace_cell() argument
1243 return fdt_setprop_inplace_u32(fdt, nodeoffset, name, val); in fdt_setprop_inplace_cell()
1270 int fdt_nop_property(void *fdt, int nodeoffset, const char *name);
1294 int fdt_nop_node(void *fdt, int nodeoffset);
1421 int fdt_set_name(void *fdt, int nodeoffset, const char *name);
1451 int fdt_setprop(void *fdt, int nodeoffset, const char *name,
1482 int fdt_setprop_placeholder(void *fdt, int nodeoffset, const char *name,
1513 static inline int fdt_setprop_u32(void *fdt, int nodeoffset, const char *name, in fdt_setprop_u32() argument
1517 return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_u32()
1548 static inline int fdt_setprop_u64(void *fdt, int nodeoffset, const char *name, in fdt_setprop_u64() argument
1552 return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_u64()
1560 static inline int fdt_setprop_cell(void *fdt, int nodeoffset, const char *name, in fdt_setprop_cell() argument
1563 return fdt_setprop_u32(fdt, nodeoffset, name, val); in fdt_setprop_cell()
1594 #define fdt_setprop_string(fdt, nodeoffset, name, str) \ argument
1595 fdt_setprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
1624 #define fdt_setprop_empty(fdt, nodeoffset, name) \ argument
1625 fdt_setprop((fdt), (nodeoffset), (name), NULL, 0)
1654 int fdt_appendprop(void *fdt, int nodeoffset, const char *name,
1685 static inline int fdt_appendprop_u32(void *fdt, int nodeoffset, in fdt_appendprop_u32() argument
1689 return fdt_appendprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_appendprop_u32()
1720 static inline int fdt_appendprop_u64(void *fdt, int nodeoffset, in fdt_appendprop_u64() argument
1724 return fdt_appendprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_appendprop_u64()
1732 static inline int fdt_appendprop_cell(void *fdt, int nodeoffset, in fdt_appendprop_cell() argument
1735 return fdt_appendprop_u32(fdt, nodeoffset, name, val); in fdt_appendprop_cell()
1765 #define fdt_appendprop_string(fdt, nodeoffset, name, str) \ argument
1766 fdt_appendprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
1790 int fdt_delprop(void *fdt, int nodeoffset, const char *name);
1863 int fdt_del_node(void *fdt, int nodeoffset);