Home
last modified time | relevance | path

Searched refs:property (Results 1 – 25 of 28) sorted by relevance

12

/scripts/dtc/
A Ddtc.h206 struct property { struct
211 struct property *next; argument
220 struct property *proplist; argument
265 struct property *build_property_delete(const char *name);
266 struct property *chain_property(struct property *first, struct property *list);
267 struct property *reverse_properties(struct property *first);
279 void add_property(struct node *node, struct property *prop);
281 void delete_property(struct property *prop);
291 cell_t propval_cell(struct property *prop);
292 cell_t propval_cell_n(struct property *prop, unsigned int n);
[all …]
A Dlivetree.c65 struct property *chain_property(struct property *first, struct property *list) in chain_property()
73 struct property *reverse_properties(struct property *first) in reverse_properties()
77 struct property *next; in reverse_properties()
232 struct property *p; in add_orphan_node()
269 struct property **p; in add_property()
328 struct property *prop; in delete_node()
344 struct property *p; in append_to_property()
427 struct property *prop; in get_property()
478 struct property *p; in get_marker_label()
661 struct property *reg; in guess_boot_cpuid()
[all …]
A Dchecks.c210 struct property *prop; in check_is_string()
229 struct property *prop; in check_is_string_list()
257 struct property *prop; in check_is_cell()
387 struct property *prop; in check_property_name_chars()
403 struct property *prop; in check_property_name_chars_strict()
469 struct property *prop; in check_duplicate_label_node()
490 struct property *prop; in check_phandle_prop()
607 struct property *prop; in fixup_phandle_references()
642 struct property *prop; in fixup_path_references()
695 struct property *prop; in check_names_is_string_list()
[all …]
A Dfdtget.c193 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()
A Dfdtput.c121 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()
A Dtreesource.c142 static void add_string_markers(struct property *prop) in add_string_markers()
164 static enum markertype guess_value_type(struct property *prop) in guess_value_type()
199 static void write_propval(FILE *f, struct property *prop) in write_propval()
301 struct property *prop; in write_tree_source_node()
A Dflattree.c42 void (*property)(void *, struct label *labels); member
99 .property = bin_emit_property,
218 .property = asm_emit_property,
240 struct property *prop; in flatten_tree()
264 emit->property(etarget, prop->labels); in flatten_tree()
276 emit->property(etarget, NULL); in flatten_tree()
664 static struct property *flat_read_property(struct inbuf *dtbuf, in flat_read_property()
750 struct property *prop; in unflatten_tree()
A Dfstree.c37 struct property *prop; in read_fstree()
A Dyamltree.c113 static void yaml_propval(yaml_emitter_t *emitter, struct property *prop) in yaml_propval()
180 struct property *prop; in yaml_tree()
A Ddtc-parser.y45 struct property *prop;
46 struct property *proplist;
/scripts/dtc/libfdt/
A Dlibfdt.h151 static inline void fdt32_st(void *property, uint32_t value) in fdt32_st() argument
153 uint8_t *bp = (uint8_t *)property; in fdt32_st()
175 static inline void fdt64_st(void *property, uint64_t value) in fdt64_st() argument
177 uint8_t *bp = (uint8_t *)property; in fdt64_st()
653 #define fdt_for_each_property_offset(property, fdt, node) \ argument
654 for (property = fdt_first_property_offset(fdt, node); \
655 property >= 0; \
656 property = fdt_next_property_offset(fdt, property))
1186 int fdt_stringlist_count(const void *fdt, int nodeoffset, const char *property);
1207 int fdt_stringlist_search(const void *fdt, int nodeoffset, const char *property,
[all …]
A Dfdt_overlay.c376 int property) in overlay_fixup_phandle() argument
386 value = fdt_getprop_by_offset(fdto, property, in overlay_fixup_phandle()
476 int property; in overlay_fixup_phandles() local
490 fdt_for_each_property_offset(property, fdto, fixups_off) { in overlay_fixup_phandles()
493 ret = overlay_fixup_phandle(fdt, fdto, symbols_off, property); in overlay_fixup_phandles()
772 int property; in overlay_apply_node() local
775 fdt_for_each_property_offset(property, fdto, node) { in overlay_apply_node()
781 prop = fdt_getprop_by_offset(fdto, property, &name, in overlay_apply_node()
A Dfdt_ro.c752 int fdt_stringlist_count(const void *fdt, int nodeoffset, const char *property) in fdt_stringlist_count() argument
757 list = fdt_getprop(fdt, nodeoffset, property, &length); in fdt_stringlist_count()
777 int fdt_stringlist_search(const void *fdt, int nodeoffset, const char *property, in fdt_stringlist_search() argument
783 list = fdt_getprop(fdt, nodeoffset, property, &length); in fdt_stringlist_search()
808 const char *property, int idx, in fdt_stringlist_get() argument
814 list = fdt_getprop(fdt, nodeoffset, property, &length); in fdt_stringlist_get()
/scripts/kconfig/
A Dexpr.h131 struct property *prop;
187 struct property { struct
188 struct property *next; /* next property - null if last */ argument
252 struct property *prompt;
A Dlkc.h87 struct property *menu_add_prompt(enum prop_type type, const char *prompt,
111 struct property *sym_get_range_prop(struct symbol *sym);
114 struct symbol *prop_get_symbol(const struct property *prop);
A Dmenu.c52 static void prop_warn(const struct property *prop, const char *fmt, ...) in prop_warn()
151 static struct property *menu_add_prop(enum prop_type type, struct expr *expr, in menu_add_prop()
154 struct property *prop; in menu_add_prop()
167 struct property **propp; in menu_add_prop()
179 struct property *menu_add_prompt(enum prop_type type, const char *prompt, in menu_add_prompt()
182 struct property *prop = menu_add_prop(type, NULL, dep); in menu_add_prompt()
235 struct property *prop; in sym_check_prop()
299 struct property *prop; in _menu_finalize()
631 static void get_prompt_str(struct gstr *r, struct property *prop, in get_prompt_str()
694 struct property *prop; in get_symbol_props_str()
[all …]
A Dsymbol.c122 struct property *prop; in sym_get_default_prop()
132 struct property *sym_get_range_prop(struct symbol *sym) in sym_get_range_prop()
134 struct property *prop; in sym_get_range_prop()
162 struct property *prop; in sym_validate_range()
214 struct property *prop; in sym_calc_visibility()
271 struct property *prop; in sym_choice_default()
409 struct property *prop; in sym_calc_value()
698 struct property *prop; in sym_string_within_range()
796 struct property *prop; in sym_get_string_default()
1067 struct property *prop;
[all …]
A Dparser.y494 struct property *prop;
631 struct property *prop; in print_symbol()
714 struct property *prop; in zconfdump()
A Dmconf.c457 struct property *prop; in build_conf()
A Dconf.c512 struct property *prop; in conf()
/scripts/
A Dmake_fit.py131 fsw.property('data', data)
153 fsw.property('compatible', bytes(compat))
155 fsw.property('fdt', bytes(''.join(f'fdt-{x}\x00' for x in files), "ascii"))
212 fsw.property('data', compressed)
/scripts/coccinelle/iterators/
A Ditnull.cocci2 /// 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/
A DKconfig45 # property
/scripts/selinux/
A Dinstall_policy.sh47 property * user_u:object_r:base_t:s0
/scripts/coccinelle/api/
A Dcheck_bq27xxx_data.cocci4 //# Doesn't unfold macros used in register or property fields.

Completed in 39 milliseconds

12