Lines Matching full:const
120 const void *fdt_offset_ptr(const void *fdt, int offset, unsigned int checklen);
127 uint32_t fdt_next_tag(const void *fdt, int offset, int *nextoffset);
134 static inline uint32_t fdt32_ld(const fdt32_t *p) in fdt32_ld()
136 const uint8_t *bp = (const uint8_t *)p; in fdt32_ld()
154 static inline uint64_t fdt64_ld(const fdt64_t *p) in fdt64_ld()
156 const uint8_t *bp = (const uint8_t *)p; in fdt64_ld()
186 int fdt_next_node(const void *fdt, int offset, int *depth);
195 int fdt_first_subnode(const void *fdt, int offset);
208 int fdt_next_subnode(const void *fdt, int offset);
214 * @fdt: FDT blob (const void *)
241 (fdt32_ld(&((const struct fdt_header *)(fdt))->field))
277 size_t fdt_header_size(const void *fdt);
303 int fdt_check_header(const void *fdt);
324 int fdt_move(const void *fdt, void *buf, int bufsize);
330 int fdt_check_full(const void *fdt, size_t bufsize);
346 const char *fdt_get_string(const void *fdt, int stroffset, int *lenp);
360 const char *fdt_string(const void *fdt, int stroffset);
374 int fdt_find_max_phandle(const void *fdt, uint32_t *phandle);
391 static inline uint32_t fdt_get_max_phandle(const void *fdt) in fdt_get_max_phandle()
415 int fdt_generate_phandle(const void *fdt, uint32_t *phandle);
428 int fdt_num_mem_rsv(const void *fdt);
447 int fdt_get_mem_rsv(const void *fdt, int n, uint64_t *address, uint64_t *size);
464 int fdt_subnode_offset_namelen(const void *fdt, int parentoffset,
465 const char *name, int namelen);
491 int fdt_subnode_offset(const void *fdt, int parentoffset, const char *name);
505 int fdt_path_offset_namelen(const void *fdt, const char *path, int namelen);
531 int fdt_path_offset(const void *fdt, const char *path);
556 const char *fdt_get_name(const void *fdt, int nodeoffset, int *lenp);
576 int fdt_first_property_offset(const void *fdt, int nodeoffset);
597 int fdt_next_property_offset(const void *fdt, int offset);
603 * @fdt: FDT blob (const void *)
653 const struct fdt_property *fdt_get_property_by_offset(const void *fdt,
672 const struct fdt_property *fdt_get_property_namelen(const void *fdt,
674 const char *name,
706 const struct fdt_property *fdt_get_property(const void *fdt, int nodeoffset,
707 const char *name, int *lenp);
709 const char *name, in fdt_get_property_w()
748 const void *fdt_getprop_by_offset(const void *fdt, int offset,
749 const char **namep, int *lenp);
766 const void *fdt_getprop_namelen(const void *fdt, int nodeoffset,
767 const char *name, int namelen, int *lenp);
769 const char *name, int namelen, in fdt_getprop_namelen_w()
805 const void *fdt_getprop(const void *fdt, int nodeoffset,
806 const char *name, int *lenp);
808 const char *name, int *lenp) in fdt_getprop_w()
825 uint32_t fdt_get_phandle(const void *fdt, int nodeoffset);
840 const char *fdt_get_alias_namelen(const void *fdt,
841 const char *name, int namelen);
856 const char *fdt_get_alias(const void *fdt, const char *name);
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);
1000 int fdt_node_offset_by_prop_value(const void *fdt, int startoffset,
1001 const char *propname,
1002 const void *propval, int proplen);
1023 int fdt_node_offset_by_phandle(const void *fdt, uint32_t phandle);
1046 int fdt_node_check_compatible(const void *fdt, int nodeoffset,
1047 const char *compatible);
1083 int fdt_node_offset_by_compatible(const void *fdt, int startoffset,
1084 const char *compatible);
1098 int fdt_stringlist_contains(const char *strlist, int listlen, const char *str);
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,
1133 const char *string);
1159 const char *fdt_stringlist_get(const void *fdt, int nodeoffset,
1160 const char *property, int index,
1196 int fdt_address_cells(const void *fdt, int nodeoffset);
1217 int fdt_size_cells(const void *fdt, int nodeoffset);
1244 const char *name, int namelen,
1245 uint32_t idx, const void *val,
1278 int fdt_setprop_inplace(void *fdt, int nodeoffset, const char *name,
1279 const void *val, int len);
1311 const char *name, uint32_t val) in fdt_setprop_inplace_u32()
1346 const char *name, uint64_t val) in fdt_setprop_inplace_u64()
1363 const char *name, uint32_t val) in fdt_setprop_inplace_cell()
1392 int fdt_nop_property(void *fdt, int nodeoffset, const char *name);
1464 int fdt_begin_node(void *fdt, const char *name);
1465 int fdt_property(void *fdt, const char *name, const void *val, int len);
1466 static inline int fdt_property_u32(void *fdt, const char *name, uint32_t val) in fdt_property_u32()
1471 static inline int fdt_property_u64(void *fdt, const char *name, uint64_t val) in fdt_property_u64()
1478 static inline int fdt_property_cell(void *fdt, const char *name, uint32_t val) in fdt_property_cell()
1497 int fdt_property_placeholder(void *fdt, const char *name, int len, void **valp);
1509 int fdt_open_into(const void *fdt, void *buf, int bufsize);
1585 int fdt_set_name(void *fdt, int nodeoffset, const char *name);
1615 int fdt_setprop(void *fdt, int nodeoffset, const char *name,
1616 const void *val, int len);
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()
1712 static inline int fdt_setprop_u64(void *fdt, int nodeoffset, const char *name, in fdt_setprop_u64()
1730 static inline int fdt_setprop_cell(void *fdt, int nodeoffset, const char *name, in fdt_setprop_cell()
1824 int fdt_appendprop(void *fdt, int nodeoffset, const char *name,
1825 const void *val, int len);
1856 const char *name, uint32_t val) in fdt_appendprop_u32()
1891 const char *name, uint64_t val) in fdt_appendprop_u64()
1909 const char *name, uint32_t val) in fdt_appendprop_cell()
1979 const char *name, uint64_t addr, uint64_t size);
2003 int fdt_delprop(void *fdt, int nodeoffset, const char *name);
2022 const char *name, int namelen);
2056 int fdt_add_subnode(void *fdt, int parentoffset, const char *name);
2116 const char *fdt_strerror(int errval);