• Home
  • Raw
  • Download

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);
560 int nodeoffset,
593 const struct fdt_property *fdt_get_property(const void *fdt, int nodeoffset,
595 static inline struct fdt_property *fdt_get_property_w(void *fdt, int nodeoffset, in fdt_get_property_w() argument
600 fdt_get_property(fdt, nodeoffset, name, lenp); in fdt_get_property_w()
651 const void *fdt_getprop_namelen(const void *fdt, int nodeoffset,
653 static inline void *fdt_getprop_namelen_w(void *fdt, int nodeoffset, in fdt_getprop_namelen_w() argument
657 return (void *)(uintptr_t)fdt_getprop_namelen(fdt, nodeoffset, name, in fdt_getprop_namelen_w()
690 const void *fdt_getprop(const void *fdt, int nodeoffset,
692 static inline void *fdt_getprop_w(void *fdt, int nodeoffset, in fdt_getprop_w() argument
695 return (void *)(uintptr_t)fdt_getprop(fdt, nodeoffset, name, lenp); in fdt_getprop_w()
710 uint32_t fdt_get_phandle(const void *fdt, int nodeoffset);
765 int fdt_get_path(const void *fdt, int nodeoffset, char *buf, int buflen);
797 int fdt_supernode_atdepth_offset(const void *fdt, int nodeoffset,
819 int fdt_node_depth(const void *fdt, int nodeoffset);
842 int fdt_parent_offset(const void *fdt, int nodeoffset);
929 int fdt_node_check_compatible(const void *fdt, int nodeoffset,
993 int fdt_stringlist_count(const void *fdt, int nodeoffset, const char *property);
1014 int fdt_stringlist_search(const void *fdt, int nodeoffset, const char *property,
1041 const char *fdt_stringlist_get(const void *fdt, int nodeoffset,
1078 int fdt_address_cells(const void *fdt, int nodeoffset);
1099 int fdt_size_cells(const void *fdt, int nodeoffset);
1123 int fdt_setprop_inplace_namelen_partial(void *fdt, int nodeoffset,
1158 int fdt_setprop_inplace(void *fdt, int nodeoffset, const char *name,
1190 static inline int fdt_setprop_inplace_u32(void *fdt, int nodeoffset, in fdt_setprop_inplace_u32() argument
1194 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u32()
1225 static inline int fdt_setprop_inplace_u64(void *fdt, int nodeoffset, in fdt_setprop_inplace_u64() argument
1229 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u64()
1237 static inline int fdt_setprop_inplace_cell(void *fdt, int nodeoffset, in fdt_setprop_inplace_cell() argument
1240 return fdt_setprop_inplace_u32(fdt, nodeoffset, name, val); in fdt_setprop_inplace_cell()
1267 int fdt_nop_property(void *fdt, int nodeoffset, const char *name);
1291 int fdt_nop_node(void *fdt, int nodeoffset);
1418 int fdt_set_name(void *fdt, int nodeoffset, const char *name);
1448 int fdt_setprop(void *fdt, int nodeoffset, const char *name,
1479 static inline int fdt_setprop_u32(void *fdt, int nodeoffset, const char *name, in fdt_setprop_u32() argument
1483 return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_u32()
1514 static inline int fdt_setprop_u64(void *fdt, int nodeoffset, const char *name, in fdt_setprop_u64() argument
1518 return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_u64()
1526 static inline int fdt_setprop_cell(void *fdt, int nodeoffset, const char *name, in fdt_setprop_cell() argument
1529 return fdt_setprop_u32(fdt, nodeoffset, name, val); in fdt_setprop_cell()
1560 #define fdt_setprop_string(fdt, nodeoffset, name, str) \ argument
1561 fdt_setprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
1590 #define fdt_setprop_empty(fdt, nodeoffset, name) \ argument
1591 fdt_setprop((fdt), (nodeoffset), (name), NULL, 0)
1620 int fdt_appendprop(void *fdt, int nodeoffset, const char *name,
1651 static inline int fdt_appendprop_u32(void *fdt, int nodeoffset, in fdt_appendprop_u32() argument
1655 return fdt_appendprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_appendprop_u32()
1686 static inline int fdt_appendprop_u64(void *fdt, int nodeoffset, in fdt_appendprop_u64() argument
1690 return fdt_appendprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_appendprop_u64()
1698 static inline int fdt_appendprop_cell(void *fdt, int nodeoffset, in fdt_appendprop_cell() argument
1701 return fdt_appendprop_u32(fdt, nodeoffset, name, val); in fdt_appendprop_cell()
1731 #define fdt_appendprop_string(fdt, nodeoffset, name, str) \ argument
1732 fdt_appendprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
1756 int fdt_delprop(void *fdt, int nodeoffset, const char *name);
1829 int fdt_del_node(void *fdt, int nodeoffset);