Lines Matching refs:name
156 #define __fdt_set_hdr(name) \ argument
157 static inline void fdt_set_##name(void *fdt, uint32_t val) \
160 fdth->name = cpu_to_fdt32(val); \
272 const char *name, int namelen);
296 int fdt_subnode_offset(const void *fdt, int parentoffset, const char *name);
373 const char *name, int *lenp);
375 const char *name, in fdt_get_property_w() argument
379 fdt_get_property(fdt, nodeoffset, name, lenp); in fdt_get_property_w()
410 const char *name, int *lenp);
412 const char *name, int *lenp) in fdt_getprop_w() argument
414 return (void *)(uintptr_t)fdt_getprop(fdt, nodeoffset, name, lenp); in fdt_getprop_w()
692 int fdt_setprop_inplace(void *fdt, int nodeoffset, const char *name,
724 const char *name, uint32_t val) in fdt_setprop_inplace_cell() argument
727 return fdt_setprop_inplace(fdt, nodeoffset, name, &val, sizeof(val)); in fdt_setprop_inplace_cell()
754 int fdt_nop_property(void *fdt, int nodeoffset, const char *name);
787 int fdt_begin_node(void *fdt, const char *name);
788 int fdt_property(void *fdt, const char *name, const void *val, int len);
789 static inline int fdt_property_cell(void *fdt, const char *name, uint32_t val) in fdt_property_cell() argument
792 return fdt_property(fdt, name, &val, sizeof(val)); in fdt_property_cell()
794 #define fdt_property_string(fdt, name, str) \ argument
795 fdt_property(fdt, name, str, strlen(str)+1)
878 int fdt_set_name(void *fdt, int nodeoffset, const char *name);
908 int fdt_setprop(void *fdt, int nodeoffset, const char *name,
939 static inline int fdt_setprop_cell(void *fdt, int nodeoffset, const char *name, in fdt_setprop_cell() argument
943 return fdt_setprop(fdt, nodeoffset, name, &val, sizeof(val)); in fdt_setprop_cell()
974 #define fdt_setprop_string(fdt, nodeoffset, name, str) \ argument
975 fdt_setprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
999 int fdt_delprop(void *fdt, int nodeoffset, const char *name);
1014 const char *name, int namelen);
1045 int fdt_add_subnode(void *fdt, int parentoffset, const char *name);