Lines Matching refs:name

247 #define fdt_set_hdr_(name) \  argument
248 static inline void fdt_set_##name(void *fdt, uint32_t val) \
251 fdth->name = cpu_to_fdt32(val); \
451 const char *name, int namelen);
477 int fdt_subnode_offset(const void *fdt, int parentoffset, const char *name);
655 const char *name,
688 const char *name, int *lenp);
690 const char *name, in fdt_get_property_w() argument
694 fdt_get_property(fdt, nodeoffset, name, lenp); in fdt_get_property_w()
746 const char *name, int namelen, int *lenp);
748 const char *name, int namelen, in fdt_getprop_namelen_w() argument
751 return (void *)(uintptr_t)fdt_getprop_namelen(fdt, nodeoffset, name, in fdt_getprop_namelen_w()
785 const char *name, int *lenp);
787 const char *name, int *lenp) in fdt_getprop_w() argument
789 return (void *)(uintptr_t)fdt_getprop(fdt, nodeoffset, name, lenp); in fdt_getprop_w()
817 const char *name, int namelen);
832 const char *fdt_get_alias(const void *fdt, const char *name);
1218 const char *name, int namelen,
1252 int fdt_setprop_inplace(void *fdt, int nodeoffset, const char *name,
1285 const char *name, uint32_t val) in fdt_setprop_inplace_u32() argument
1288 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u32()
1320 const char *name, uint64_t val) in fdt_setprop_inplace_u64() argument
1323 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u64()
1332 const char *name, uint32_t val) in fdt_setprop_inplace_cell() argument
1334 return fdt_setprop_inplace_u32(fdt, nodeoffset, name, val); in fdt_setprop_inplace_cell()
1361 int fdt_nop_property(void *fdt, int nodeoffset, const char *name);
1433 int fdt_begin_node(void *fdt, const char *name);
1434 int fdt_property(void *fdt, const char *name, const void *val, int len);
1435 static inline int fdt_property_u32(void *fdt, const char *name, uint32_t val) in fdt_property_u32() argument
1438 return fdt_property(fdt, name, &tmp, sizeof(tmp)); in fdt_property_u32()
1440 static inline int fdt_property_u64(void *fdt, const char *name, uint64_t val) in fdt_property_u64() argument
1443 return fdt_property(fdt, name, &tmp, sizeof(tmp)); in fdt_property_u64()
1447 static inline int fdt_property_cell(void *fdt, const char *name, uint32_t val) in fdt_property_cell() argument
1449 return fdt_property_u32(fdt, name, val); in fdt_property_cell()
1466 int fdt_property_placeholder(void *fdt, const char *name, int len, void **valp);
1468 #define fdt_property_string(fdt, name, str) \ argument
1469 fdt_property(fdt, name, str, strlen(str)+1)
1553 int fdt_set_name(void *fdt, int nodeoffset, const char *name);
1583 int fdt_setprop(void *fdt, int nodeoffset, const char *name,
1614 int fdt_setprop_placeholder(void *fdt, int nodeoffset, const char *name,
1645 static inline int fdt_setprop_u32(void *fdt, int nodeoffset, const char *name, in fdt_setprop_u32() argument
1649 return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_u32()
1680 static inline int fdt_setprop_u64(void *fdt, int nodeoffset, const char *name, in fdt_setprop_u64() argument
1684 return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_u64()
1692 static inline int fdt_setprop_cell(void *fdt, int nodeoffset, const char *name, in fdt_setprop_cell() argument
1695 return fdt_setprop_u32(fdt, nodeoffset, name, val); in fdt_setprop_cell()
1726 #define fdt_setprop_string(fdt, nodeoffset, name, str) \ argument
1727 fdt_setprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
1756 #define fdt_setprop_empty(fdt, nodeoffset, name) \ argument
1757 fdt_setprop((fdt), (nodeoffset), (name), NULL, 0)
1786 int fdt_appendprop(void *fdt, int nodeoffset, const char *name,
1818 const char *name, uint32_t val) in fdt_appendprop_u32() argument
1821 return fdt_appendprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_appendprop_u32()
1853 const char *name, uint64_t val) in fdt_appendprop_u64() argument
1856 return fdt_appendprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_appendprop_u64()
1865 const char *name, uint32_t val) in fdt_appendprop_cell() argument
1867 return fdt_appendprop_u32(fdt, nodeoffset, name, val); in fdt_appendprop_cell()
1897 #define fdt_appendprop_string(fdt, nodeoffset, name, str) \ argument
1898 fdt_appendprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
1935 const char *name, uint64_t addr, uint64_t size);
1959 int fdt_delprop(void *fdt, int nodeoffset, const char *name);
1975 const char *name, int namelen);
2009 int fdt_add_subnode(void *fdt, int parentoffset, const char *name);