• Home
  • Raw
  • Download

Lines Matching refs:nodeoffset

545 const char *fdt_get_name(const void *fdt, int nodeoffset, int *lenp);
565 int fdt_first_property_offset(const void *fdt, int nodeoffset);
659 int nodeoffset,
692 const struct fdt_property *fdt_get_property(const void *fdt, int nodeoffset,
694 static inline struct fdt_property *fdt_get_property_w(void *fdt, int nodeoffset, in fdt_get_property_w() argument
699 fdt_get_property(fdt, nodeoffset, name, lenp); in fdt_get_property_w()
750 const void *fdt_getprop_namelen(const void *fdt, int nodeoffset,
752 static inline void *fdt_getprop_namelen_w(void *fdt, int nodeoffset, in fdt_getprop_namelen_w() argument
756 return (void *)(uintptr_t)fdt_getprop_namelen(fdt, nodeoffset, name, in fdt_getprop_namelen_w()
789 const void *fdt_getprop(const void *fdt, int nodeoffset,
791 static inline void *fdt_getprop_w(void *fdt, int nodeoffset, in fdt_getprop_w() argument
794 return (void *)(uintptr_t)fdt_getprop(fdt, nodeoffset, name, lenp); in fdt_getprop_w()
809 uint32_t fdt_get_phandle(const void *fdt, int nodeoffset);
864 int fdt_get_path(const void *fdt, int nodeoffset, char *buf, int buflen);
896 int fdt_supernode_atdepth_offset(const void *fdt, int nodeoffset,
918 int fdt_node_depth(const void *fdt, int nodeoffset);
941 int fdt_parent_offset(const void *fdt, int nodeoffset);
1028 int fdt_node_check_compatible(const void *fdt, int nodeoffset,
1092 int fdt_stringlist_count(const void *fdt, int nodeoffset, const char *property);
1113 int fdt_stringlist_search(const void *fdt, int nodeoffset, const char *property,
1140 const char *fdt_stringlist_get(const void *fdt, int nodeoffset,
1177 int fdt_address_cells(const void *fdt, int nodeoffset);
1198 int fdt_size_cells(const void *fdt, int nodeoffset);
1222 int fdt_setprop_inplace_namelen_partial(void *fdt, int nodeoffset,
1257 int fdt_setprop_inplace(void *fdt, int nodeoffset, const char *name,
1289 static inline int fdt_setprop_inplace_u32(void *fdt, int nodeoffset, in fdt_setprop_inplace_u32() argument
1293 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u32()
1324 static inline int fdt_setprop_inplace_u64(void *fdt, int nodeoffset, in fdt_setprop_inplace_u64() argument
1328 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u64()
1336 static inline int fdt_setprop_inplace_cell(void *fdt, int nodeoffset, in fdt_setprop_inplace_cell() argument
1339 return fdt_setprop_inplace_u32(fdt, nodeoffset, name, val); in fdt_setprop_inplace_cell()
1366 int fdt_nop_property(void *fdt, int nodeoffset, const char *name);
1390 int fdt_nop_node(void *fdt, int nodeoffset);
1558 int fdt_set_name(void *fdt, int nodeoffset, const char *name);
1588 int fdt_setprop(void *fdt, int nodeoffset, const char *name,
1619 int fdt_setprop_placeholder(void *fdt, int nodeoffset, const char *name,
1650 static inline int fdt_setprop_u32(void *fdt, int nodeoffset, const char *name, in fdt_setprop_u32() argument
1654 return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_u32()
1685 static inline int fdt_setprop_u64(void *fdt, int nodeoffset, const char *name, in fdt_setprop_u64() argument
1689 return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_u64()
1697 static inline int fdt_setprop_cell(void *fdt, int nodeoffset, const char *name, in fdt_setprop_cell() argument
1700 return fdt_setprop_u32(fdt, nodeoffset, name, val); in fdt_setprop_cell()
1731 #define fdt_setprop_string(fdt, nodeoffset, name, str) \ argument
1732 fdt_setprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
1761 #define fdt_setprop_empty(fdt, nodeoffset, name) \ argument
1762 fdt_setprop((fdt), (nodeoffset), (name), NULL, 0)
1791 int fdt_appendprop(void *fdt, int nodeoffset, const char *name,
1822 static inline int fdt_appendprop_u32(void *fdt, int nodeoffset, in fdt_appendprop_u32() argument
1826 return fdt_appendprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_appendprop_u32()
1857 static inline int fdt_appendprop_u64(void *fdt, int nodeoffset, in fdt_appendprop_u64() argument
1861 return fdt_appendprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_appendprop_u64()
1869 static inline int fdt_appendprop_cell(void *fdt, int nodeoffset, in fdt_appendprop_cell() argument
1872 return fdt_appendprop_u32(fdt, nodeoffset, name, val); in fdt_appendprop_cell()
1902 #define fdt_appendprop_string(fdt, nodeoffset, name, str) \ argument
1903 fdt_appendprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
1939 int fdt_appendprop_addrrange(void *fdt, int parent, int nodeoffset,
1964 int fdt_delprop(void *fdt, int nodeoffset, const char *name);
2037 int fdt_del_node(void *fdt, int nodeoffset);