/scripts/dtc/ |
D | dtc.h | 170 struct property { struct 175 struct property *next; argument 184 struct property *proplist; argument 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); [all …]
|
D | livetree.c | 39 struct property *build_property(char *name, struct data val, in build_property() 42 struct property *new = xmalloc(sizeof(*new)); in build_property() 53 struct property *build_property_delete(char *name) in build_property_delete() 55 struct property *new = xmalloc(sizeof(*new)); in build_property_delete() 65 struct property *chain_property(struct property *first, struct property *list) in chain_property() 73 struct property *reverse_properties(struct property *first) in reverse_properties() 75 struct property *p = first; in reverse_properties() 76 struct property *head = NULL; in reverse_properties() 77 struct property *next; in reverse_properties() 88 struct node *build_node(struct property *proplist, struct node *children, in build_node() [all …]
|
D | checks.c | 63 struct property *prop, in check_msg() 201 struct property *prop; in check_is_string() 220 struct property *prop; in check_is_string_list() 248 struct property *prop; in check_is_cell() 284 struct property *prop, *prop2; in check_duplicate_property_names() 337 struct property *prop = get_property(node, "reg"); in check_unit_address_vs_reg() 363 struct property *prop; in check_property_name_chars() 379 struct property *prop; in check_property_name_chars_strict() 416 struct property *prop, struct marker *mark) in check_duplicate_label() 420 struct property *otherprop = NULL; in check_duplicate_label() [all …]
|
D | fdtget.c | 193 int node, const char *property) in show_data_for_item() argument 208 assert(property); in show_data_for_item() 209 value = fdt_getprop(blob, node, property, &len); in show_data_for_item() 218 report_error(property, len); in show_data_for_item()
|
D | fdtput.c | 121 const char *property, const char *buf, int len) in store_key_value() argument 132 err = fdt_setprop(blob, node, property, buf, len); in store_key_value() 134 report_error(property, -1, err); in store_key_value()
|
D | flattree.c | 42 void (*property)(void *, struct label *labels); member 99 .property = bin_emit_property, 217 .property = asm_emit_property, 239 struct property *prop; in flatten_tree() 263 emit->property(etarget, prop->labels); in flatten_tree() 275 emit->property(etarget, NULL); in flatten_tree() 663 static struct property *flat_read_property(struct inbuf *dtbuf, in flat_read_property() 748 struct property *prop; in unflatten_tree()
|
D | treesource.c | 163 static enum markertype guess_value_type(struct property *prop) in guess_value_type() 196 static void write_propval(FILE *f, struct property *prop) in write_propval() 283 struct property *prop; in write_tree_source_node()
|
D | fstree.c | 37 struct property *prop; in read_fstree()
|
D | yamltree.c | 112 static void yaml_propval(yaml_emitter_t *emitter, struct property *prop) in yaml_propval() 178 struct property *prop; in yaml_tree()
|
D | dtc-parser.y | 39 struct property *prop; 40 struct property *proplist;
|
/scripts/dtc/libfdt/ |
D | libfdt.h | 141 static inline void fdt32_st(void *property, uint32_t value) in fdt32_st() argument 143 uint8_t *bp = (uint8_t *)property; in fdt32_st() 165 static inline void fdt64_st(void *property, uint64_t value) in fdt64_st() argument 167 uint8_t *bp = (uint8_t *)property; in fdt64_st() 610 #define fdt_for_each_property_offset(property, fdt, node) \ argument 611 for (property = fdt_first_property_offset(fdt, node); \ 612 property >= 0; \ 613 property = fdt_next_property_offset(fdt, property)) 1092 int fdt_stringlist_count(const void *fdt, int nodeoffset, const char *property); 1113 int fdt_stringlist_search(const void *fdt, int nodeoffset, const char *property, [all …]
|
D | fdt_overlay.c | 429 int property) in overlay_fixup_phandle() argument 435 value = fdt_getprop_by_offset(fdto, property, in overlay_fixup_phandle() 513 int property; in overlay_fixup_phandles() local 527 fdt_for_each_property_offset(property, fdto, fixups_off) { in overlay_fixup_phandles() 530 ret = overlay_fixup_phandle(fdt, fdto, symbols_off, property); in overlay_fixup_phandles() 560 int property; in overlay_apply_node() local 563 fdt_for_each_property_offset(property, fdto, node) { in overlay_apply_node() 569 prop = fdt_getprop_by_offset(fdto, property, &name, in overlay_apply_node()
|
D | fdt_ro.c | 723 int fdt_stringlist_count(const void *fdt, int nodeoffset, const char *property) in fdt_stringlist_count() argument 728 list = fdt_getprop(fdt, nodeoffset, property, &length); in fdt_stringlist_count() 748 int fdt_stringlist_search(const void *fdt, int nodeoffset, const char *property, in fdt_stringlist_search() argument 754 list = fdt_getprop(fdt, nodeoffset, property, &length); in fdt_stringlist_search() 779 const char *property, int idx, in fdt_stringlist_get() argument 785 list = fdt_getprop(fdt, nodeoffset, property, &length); in fdt_stringlist_get()
|
/scripts/kconfig/ |
D | symbol.c | 74 struct property *sym_get_choice_prop(struct symbol *sym) in sym_get_choice_prop() 76 struct property *prop; in sym_get_choice_prop() 83 static struct property *sym_get_default_prop(struct symbol *sym) in sym_get_default_prop() 85 struct property *prop; in sym_get_default_prop() 95 struct property *sym_get_range_prop(struct symbol *sym) in sym_get_range_prop() 97 struct property *prop; in sym_get_range_prop() 125 struct property *prop; in sym_validate_range() 157 struct property *prop; in sym_set_changed() 177 struct property *prop; in sym_calc_visibility() 247 struct property *prop; in sym_choice_default() [all …]
|
D | expr.h | 120 struct property *prop; 192 struct property { struct 193 struct property *next; /* next property - null if last */ argument 241 struct property *prompt;
|
D | lkc.h | 103 struct property *menu_add_prompt(enum prop_type type, char *prompt, struct expr *dep); 128 struct property *sym_get_range_prop(struct symbol *sym); 131 struct symbol *prop_get_symbol(struct property *prop);
|
D | menu.c | 31 static void prop_warn(struct property *prop, const char *fmt, ...) in prop_warn() 128 static struct property *menu_add_prop(enum prop_type type, struct expr *expr, in menu_add_prop() 131 struct property *prop; in menu_add_prop() 144 struct property **propp; in menu_add_prop() 156 struct property *menu_add_prompt(enum prop_type type, char *prompt, in menu_add_prompt() 159 struct property *prop = menu_add_prop(type, NULL, dep); in menu_add_prompt() 244 struct property *prop; in sym_check_prop() 266 struct property *choice_prop = in sym_check_prop() 310 struct property *prop; in menu_finalize() 730 static void get_prompt_str(struct gstr *r, struct property *prop, in get_prompt_str() [all …]
|
D | lkc_proto.h | 32 struct property * sym_get_choice_prop(struct symbol *sym);
|
D | parser.y | 592 struct property *prop; in print_symbol() 682 struct property *prop; in zconfdump()
|
D | confdata.c | 362 struct property *prop; in conf_read_simple() 1136 struct property *prop; in randomize_choice_values() 1184 struct property *prop; in set_all_choice_values()
|
D | qconf.cc | 92 struct property *prop; in updateMenu() 1077 for (struct property *prop = sym->prop; prop; prop = prop->next) { in debug_info() 1194 for (struct property *prop = sym->prop; prop; prop = prop->next) { in clicked() 1289 struct property *prop; in search()
|
/scripts/coccinelle/iterators/ |
D | itnull.cocci | 2 /// Many iterators have the property that the first argument is always bound 4 //# False positives arise for some iterators that do not have this property,
|
/scripts/kconfig/tests/err_recursive_dep/ |
D | Kconfig | 45 # property
|
/scripts/selinux/ |
D | install_policy.sh | 51 property * user_u:object_r:base_t:s0
|
/scripts/coccinelle/api/ |
D | check_bq27xxx_data.cocci | 4 //# Doesn't unfold macros used in register or property fields.
|