• Home
  • Raw
  • Download

Lines Matching refs:nodeoffset

556 const char *fdt_get_name(const void *fdt, int nodeoffset, int *lenp);
576 int fdt_first_property_offset(const void *fdt, int nodeoffset);
673 int nodeoffset,
706 const struct fdt_property *fdt_get_property(const void *fdt, int nodeoffset,
708 static inline struct fdt_property *fdt_get_property_w(void *fdt, int nodeoffset, in fdt_get_property_w() argument
713 fdt_get_property(fdt, nodeoffset, name, lenp); in fdt_get_property_w()
766 const void *fdt_getprop_namelen(const void *fdt, int nodeoffset,
768 static inline void *fdt_getprop_namelen_w(void *fdt, int nodeoffset, in fdt_getprop_namelen_w() argument
772 return (void *)(uintptr_t)fdt_getprop_namelen(fdt, nodeoffset, name, in fdt_getprop_namelen_w()
805 const void *fdt_getprop(const void *fdt, int nodeoffset,
807 static inline void *fdt_getprop_w(void *fdt, int nodeoffset, in fdt_getprop_w() argument
810 return (void *)(uintptr_t)fdt_getprop(fdt, nodeoffset, name, lenp); in fdt_getprop_w()
825 uint32_t fdt_get_phandle(const void *fdt, int nodeoffset);
883 int fdt_get_path(const void *fdt, int nodeoffset, char *buf, int buflen);
915 int fdt_supernode_atdepth_offset(const void *fdt, int nodeoffset,
937 int fdt_node_depth(const void *fdt, int nodeoffset);
960 int fdt_parent_offset(const void *fdt, int nodeoffset);
1046 int fdt_node_check_compatible(const void *fdt, int nodeoffset,
1111 int fdt_stringlist_count(const void *fdt, int nodeoffset, const char *property);
1132 int fdt_stringlist_search(const void *fdt, int nodeoffset, const char *property,
1159 const char *fdt_stringlist_get(const void *fdt, int nodeoffset,
1196 int fdt_address_cells(const void *fdt, int nodeoffset);
1217 int fdt_size_cells(const void *fdt, int nodeoffset);
1243 int fdt_setprop_inplace_namelen_partial(void *fdt, int nodeoffset,
1278 int fdt_setprop_inplace(void *fdt, int nodeoffset, const char *name,
1310 static inline int fdt_setprop_inplace_u32(void *fdt, int nodeoffset, in fdt_setprop_inplace_u32() argument
1314 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u32()
1345 static inline int fdt_setprop_inplace_u64(void *fdt, int nodeoffset, in fdt_setprop_inplace_u64() argument
1349 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u64()
1362 static inline int fdt_setprop_inplace_cell(void *fdt, int nodeoffset, in fdt_setprop_inplace_cell() argument
1365 return fdt_setprop_inplace_u32(fdt, nodeoffset, name, val); in fdt_setprop_inplace_cell()
1392 int fdt_nop_property(void *fdt, int nodeoffset, const char *name);
1416 int fdt_nop_node(void *fdt, int nodeoffset);
1585 int fdt_set_name(void *fdt, int nodeoffset, const char *name);
1615 int fdt_setprop(void *fdt, int nodeoffset, const char *name,
1646 int fdt_setprop_placeholder(void *fdt, int nodeoffset, const char *name,
1677 static inline int fdt_setprop_u32(void *fdt, int nodeoffset, const char *name, in fdt_setprop_u32() argument
1681 return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_u32()
1712 static inline int fdt_setprop_u64(void *fdt, int nodeoffset, const char *name, in fdt_setprop_u64() argument
1716 return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_u64()
1730 static inline int fdt_setprop_cell(void *fdt, int nodeoffset, const char *name, in fdt_setprop_cell() argument
1733 return fdt_setprop_u32(fdt, nodeoffset, name, val); in fdt_setprop_cell()
1764 #define fdt_setprop_string(fdt, nodeoffset, name, str) \ argument
1765 fdt_setprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
1794 #define fdt_setprop_empty(fdt, nodeoffset, name) \ argument
1795 fdt_setprop((fdt), (nodeoffset), (name), NULL, 0)
1824 int fdt_appendprop(void *fdt, int nodeoffset, const char *name,
1855 static inline int fdt_appendprop_u32(void *fdt, int nodeoffset, in fdt_appendprop_u32() argument
1859 return fdt_appendprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_appendprop_u32()
1890 static inline int fdt_appendprop_u64(void *fdt, int nodeoffset, in fdt_appendprop_u64() argument
1894 return fdt_appendprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_appendprop_u64()
1908 static inline int fdt_appendprop_cell(void *fdt, int nodeoffset, in fdt_appendprop_cell() argument
1911 return fdt_appendprop_u32(fdt, nodeoffset, name, val); in fdt_appendprop_cell()
1941 #define fdt_appendprop_string(fdt, nodeoffset, name, str) \ argument
1942 fdt_appendprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
1978 int fdt_appendprop_addrrange(void *fdt, int parent, int nodeoffset,
2003 int fdt_delprop(void *fdt, int nodeoffset, const char *name);
2079 int fdt_del_node(void *fdt, int nodeoffset);