Lines Matching refs:name
228 #define __fdt_set_hdr(name) \ argument
229 static inline void fdt_set_##name(void *fdt, uint32_t val) \
232 fdth->name = cpu_to_fdt32(val); \
360 const char *name, int namelen);
386 int fdt_subnode_offset(const void *fdt, int parentoffset, const char *name);
561 const char *name,
594 const char *name, int *lenp);
596 const char *name, in fdt_get_property_w() argument
600 fdt_get_property(fdt, nodeoffset, name, lenp); in fdt_get_property_w()
652 const char *name, int namelen, int *lenp);
654 const char *name, int namelen, in fdt_getprop_namelen_w() argument
657 return (void *)(uintptr_t)fdt_getprop_namelen(fdt, nodeoffset, name, in fdt_getprop_namelen_w()
691 const char *name, int *lenp);
693 const char *name, int *lenp) in fdt_getprop_w() argument
695 return (void *)(uintptr_t)fdt_getprop(fdt, nodeoffset, name, lenp); in fdt_getprop_w()
723 const char *name, int namelen);
738 const char *fdt_get_alias(const void *fdt, const char *name);
1124 const char *name, int namelen,
1158 int fdt_setprop_inplace(void *fdt, int nodeoffset, const char *name,
1191 const char *name, uint32_t val) in fdt_setprop_inplace_u32() argument
1194 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u32()
1226 const char *name, uint64_t val) in fdt_setprop_inplace_u64() argument
1229 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u64()
1238 const char *name, uint32_t val) 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);
1301 int fdt_begin_node(void *fdt, const char *name);
1302 int fdt_property(void *fdt, const char *name, const void *val, int len);
1303 static inline int fdt_property_u32(void *fdt, const char *name, uint32_t val) in fdt_property_u32() argument
1306 return fdt_property(fdt, name, &tmp, sizeof(tmp)); in fdt_property_u32()
1308 static inline int fdt_property_u64(void *fdt, const char *name, uint64_t val) in fdt_property_u64() argument
1311 return fdt_property(fdt, name, &tmp, sizeof(tmp)); in fdt_property_u64()
1313 static inline int fdt_property_cell(void *fdt, const char *name, uint32_t val) in fdt_property_cell() argument
1315 return fdt_property_u32(fdt, name, val); in fdt_property_cell()
1331 int fdt_property_placeholder(void *fdt, const char *name, int len, void **valp);
1333 #define fdt_property_string(fdt, name, str) \ argument
1334 fdt_property(fdt, name, str, strlen(str)+1)
1418 int fdt_set_name(void *fdt, int nodeoffset, const char *name);
1448 int fdt_setprop(void *fdt, int nodeoffset, const char *name,
1479 int fdt_setprop_placeholder(void *fdt, int nodeoffset, const char *name,
1510 static inline int fdt_setprop_u32(void *fdt, int nodeoffset, const char *name, in fdt_setprop_u32() argument
1514 return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_u32()
1545 static inline int fdt_setprop_u64(void *fdt, int nodeoffset, const char *name, in fdt_setprop_u64() argument
1549 return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_u64()
1557 static inline int fdt_setprop_cell(void *fdt, int nodeoffset, const char *name, in fdt_setprop_cell() argument
1560 return fdt_setprop_u32(fdt, nodeoffset, name, val); in fdt_setprop_cell()
1591 #define fdt_setprop_string(fdt, nodeoffset, name, str) \ argument
1592 fdt_setprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
1621 #define fdt_setprop_empty(fdt, nodeoffset, name) \ argument
1622 fdt_setprop((fdt), (nodeoffset), (name), NULL, 0)
1651 int fdt_appendprop(void *fdt, int nodeoffset, const char *name,
1683 const char *name, uint32_t val) in fdt_appendprop_u32() argument
1686 return fdt_appendprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_appendprop_u32()
1718 const char *name, uint64_t val) in fdt_appendprop_u64() argument
1721 return fdt_appendprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_appendprop_u64()
1730 const char *name, uint32_t val) in fdt_appendprop_cell() argument
1732 return fdt_appendprop_u32(fdt, nodeoffset, name, val); in fdt_appendprop_cell()
1762 #define fdt_appendprop_string(fdt, nodeoffset, name, str) \ argument
1763 fdt_appendprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
1787 int fdt_delprop(void *fdt, int nodeoffset, const char *name);
1803 const char *name, int namelen);
1837 int fdt_add_subnode(void *fdt, int parentoffset, const char *name);