Lines Matching refs:name

183 #define __fdt_set_hdr(name) \  argument
184 static inline void fdt_set_##name(void *fdt, uint32_t val) \
187 fdth->name = cpu_to_fdt32(val); \
299 const char *name, int namelen);
323 int fdt_subnode_offset(const void *fdt, int parentoffset, const char *name);
465 const char *name,
496 const char *name, int *lenp);
498 const char *name, in fdt_get_property_w() argument
502 fdt_get_property(fdt, nodeoffset, name, lenp); in fdt_get_property_w()
551 const char *name, int namelen, int *lenp);
581 const char *name, int *lenp);
583 const char *name, int *lenp) in fdt_getprop_w() argument
585 return (void *)(uintptr_t)fdt_getprop(fdt, nodeoffset, name, lenp); in fdt_getprop_w()
612 const char *name, int namelen);
626 const char *fdt_get_alias(const void *fdt, const char *name);
958 int fdt_setprop_inplace(void *fdt, int nodeoffset, const char *name,
990 const char *name, uint32_t val) in fdt_setprop_inplace_u32() argument
993 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u32()
1025 const char *name, uint64_t val) in fdt_setprop_inplace_u64() argument
1028 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_inplace_u64()
1037 const char *name, uint32_t val) in fdt_setprop_inplace_cell() argument
1039 return fdt_setprop_inplace_u32(fdt, nodeoffset, name, val); in fdt_setprop_inplace_cell()
1066 int fdt_nop_property(void *fdt, int nodeoffset, const char *name);
1100 int fdt_begin_node(void *fdt, const char *name);
1101 int fdt_property(void *fdt, const char *name, const void *val, int len);
1102 static inline int fdt_property_u32(void *fdt, const char *name, uint32_t val) in fdt_property_u32() argument
1105 return fdt_property(fdt, name, &tmp, sizeof(tmp)); in fdt_property_u32()
1107 static inline int fdt_property_u64(void *fdt, const char *name, uint64_t val) in fdt_property_u64() argument
1110 return fdt_property(fdt, name, &tmp, sizeof(tmp)); in fdt_property_u64()
1112 static inline int fdt_property_cell(void *fdt, const char *name, uint32_t val) in fdt_property_cell() argument
1114 return fdt_property_u32(fdt, name, val); in fdt_property_cell()
1116 #define fdt_property_string(fdt, name, str) \ argument
1117 fdt_property(fdt, name, str, strlen(str)+1)
1201 int fdt_set_name(void *fdt, int nodeoffset, const char *name);
1231 int fdt_setprop(void *fdt, int nodeoffset, const char *name,
1262 static inline int fdt_setprop_u32(void *fdt, int nodeoffset, const char *name, in fdt_setprop_u32() argument
1266 return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_u32()
1297 static inline int fdt_setprop_u64(void *fdt, int nodeoffset, const char *name, in fdt_setprop_u64() argument
1301 return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_setprop_u64()
1309 static inline int fdt_setprop_cell(void *fdt, int nodeoffset, const char *name, in fdt_setprop_cell() argument
1312 return fdt_setprop_u32(fdt, nodeoffset, name, val); in fdt_setprop_cell()
1343 #define fdt_setprop_string(fdt, nodeoffset, name, str) \ argument
1344 fdt_setprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
1373 int fdt_appendprop(void *fdt, int nodeoffset, const char *name,
1405 const char *name, uint32_t val) in fdt_appendprop_u32() argument
1408 return fdt_appendprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_appendprop_u32()
1440 const char *name, uint64_t val) in fdt_appendprop_u64() argument
1443 return fdt_appendprop(fdt, nodeoffset, name, &tmp, sizeof(tmp)); in fdt_appendprop_u64()
1452 const char *name, uint32_t val) in fdt_appendprop_cell() argument
1454 return fdt_appendprop_u32(fdt, nodeoffset, name, val); in fdt_appendprop_cell()
1484 #define fdt_appendprop_string(fdt, nodeoffset, name, str) \ argument
1485 fdt_appendprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
1509 int fdt_delprop(void *fdt, int nodeoffset, const char *name);
1524 const char *name, int namelen);
1555 int fdt_add_subnode(void *fdt, int parentoffset, const char *name);