• Home
  • Raw
  • Download

Lines Matching refs:ufdt

22 struct ufdt *ufdt_construct(void *fdtp, struct ufdt_node_pool *pool) {  in ufdt_construct()
30 struct ufdt *res_ufdt = NULL; in ufdt_construct()
36 res_ufdt = dto_malloc(sizeof(struct ufdt)); in ufdt_construct()
53 void ufdt_destruct(struct ufdt *tree, struct ufdt_node_pool *pool) { in ufdt_destruct()
63 int ufdt_add_fdt(struct ufdt *tree, void *fdtp) { in ufdt_add_fdt()
87 int ufdt_get_string_off(const struct ufdt *tree, const char *s) { in ufdt_get_string_off()
166 void ufdt_print(struct ufdt *tree) { in ufdt_print()
170 struct ufdt_node *ufdt_get_node_by_path_len(struct ufdt *tree, const char *path, in ufdt_get_node_by_path_len()
213 struct ufdt_node *ufdt_get_node_by_path(struct ufdt *tree, const char *path) { in ufdt_get_node_by_path()
217 struct ufdt_node *ufdt_get_node_by_phandle(struct ufdt *tree, in ufdt_get_node_by_phandle()
275 struct ufdt_static_phandle_table build_phandle_table(struct ufdt *tree) { in build_phandle_table()
286 struct ufdt *ufdt_from_fdt(void *fdtp, size_t fdt_size, in ufdt_from_fdt()
295 struct ufdt *res_tree = ufdt_construct(fdtp, pool); in ufdt_from_fdt()
306 static int _ufdt_get_property_nameoff(const struct ufdt *tree, const char *name, in _ufdt_get_property_nameoff()
325 const struct ufdt *tree, void *fdtp, in _ufdt_output_property_to_fdt()
356 static int _ufdt_output_node_to_fdt(const struct ufdt *tree, void *fdtp, in _ufdt_output_node_to_fdt()
386 static int _ufdt_output_strtab_to_fdt(const struct ufdt *tree, void *fdt) { in _ufdt_output_strtab_to_fdt()
416 int ufdt_to_fdt(const struct ufdt *tree, void *buf, int buf_size) { in ufdt_to_fdt()