Lines Matching +full:bool +full:- +full:property
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
45 extern int auto_label_aliases; /* auto generate labels -> aliases */
90 #define ALIGN(x, a) (((x) + (a) - 1) & ~((a) - 1))
123 for (; (m); (m) = (m)->next)
126 if ((m)->type == (t))
152 bool data_is_one_string(struct data d);
161 bool deleted;
170 struct property { struct
171 bool deleted;
175 struct property *next; argument
182 bool deleted;
184 struct property *proplist; argument
200 bool omit_if_unused, is_referenced;
204 for ((l) = (l0); (l); (l) = (l)->next)
208 if (!(l)->deleted)
211 for ((p) = (n)->proplist; (p); (p) = (p)->next)
215 if (!(p)->deleted)
218 for ((c) = (n)->children; (c); (c) = (c)->next_sibling)
222 if (!(c)->deleted)
227 struct property *build_property(char *name, struct data val,
229 struct property *build_property_delete(char *name);
230 struct property *chain_property(struct property *first, struct property *list);
231 struct property *reverse_properties(struct property *first);
233 struct node *build_node(struct property *proplist, struct node *children,
243 void add_property(struct node *node, struct property *prop);
245 void delete_property(struct property *prop);
254 struct property *get_property(struct node *node, const char *propname);
255 cell_t propval_cell(struct property *prop);
256 cell_t propval_cell_n(struct property *prop, int n);
257 struct property *get_property_by_label(struct node *tree, const char *label,
260 struct node **node, struct property **prop);
292 const char *outname; /* filename being written to, "-" for stdout */
296 #define DTSF_V1 0x0001 /* /dts-v1/ */
303 void generate_label_tree(struct dt_info *dti, char *name, bool allocph);
309 void parse_checks_option(bool warn, bool error, const char *arg);
310 void process_checks(bool force, struct dt_info *dti);