/xen/xen/tools/kconfig/ |
A D | lkc.h | 55 void set_all_choice_values(struct symbol *csym); 71 void menu_add_entry(struct symbol *sym); 111 struct symbol *sym_choice_default(struct symbol *sym); 114 struct symbol *sym_check_deps(struct symbol *sym); 116 struct symbol *prop_get_symbol(struct property *prop); 124 static inline struct symbol *sym_get_choice_value(struct symbol *sym) in sym_get_choice_value() 126 return (struct symbol *)sym->curr.val; in sym_get_choice_value() 129 static inline bool sym_set_choice_value(struct symbol *ch, struct symbol *chval) in sym_set_choice_value() 134 static inline bool sym_is_choice(struct symbol *sym) in sym_is_choice() 144 static inline bool sym_is_optional(struct symbol *sym) in sym_is_optional() [all …]
|
A D | lkc_proto.h | 30 extern struct symbol * symbol_hash[SYMBOL_HASHSIZE]; 32 struct symbol * sym_lookup(const char *name, int flags); 33 struct symbol * sym_find(const char *name); 35 struct symbol ** sym_re_search(const char *pattern); 37 void sym_calc_value(struct symbol *sym); 38 enum symbol_type sym_get_type(struct symbol *sym); 40 bool sym_set_tristate_value(struct symbol *sym,tristate tri); 41 tristate sym_toggle_tristate_value(struct symbol *sym); 45 bool sym_is_changeable(struct symbol *sym); 46 struct property * sym_get_choice_prop(struct symbol *sym); [all …]
|
A D | symbol.c | 240 struct symbol *sym_choice_default(struct symbol *sym) in sym_choice_default() 266 static struct symbol *sym_calc_choice(struct symbol *sym) in sym_calc_choice() 804 struct symbol *symbol; in sym_lookup() local 818 for (symbol = symbol_hash[hash]; symbol; symbol = symbol->next) { in sym_lookup() 831 symbol = xmalloc(sizeof(*symbol)); in sym_lookup() 832 memset(symbol, 0, sizeof(*symbol)); in sym_lookup() 840 return symbol; in sym_lookup() 845 struct symbol *symbol = NULL; in sym_find() local 860 for (symbol = symbol_hash[hash]; symbol; symbol = symbol->next) { in sym_find() 867 return symbol; in sym_find() [all …]
|
A D | expr.h | 39 struct symbol *sym; 83 struct symbol { struct 85 struct symbol *next; argument 235 struct symbol *sym; 291 extern struct symbol symbol_yes, symbol_no, symbol_mod; 292 extern struct symbol *modules_sym; 293 extern struct symbol *sym_defconfig_list; 295 struct expr *expr_alloc_symbol(struct symbol *sym); 298 struct expr *expr_alloc_comp(enum expr_type type, struct symbol *s1, struct symbol *s2); 308 int expr_contains_symbol(struct expr *dep, struct symbol *sym); [all …]
|
A D | parser.y | 38 struct symbol *symbol; member 95 %type <symbol> symbol 212 config_option: T_RANGE symbol symbol if_expr T_EOL 451 | symbol T_LESS symbol { $$ = expr_alloc_comp(E_LTH, $1, $3); } 452 | symbol T_LESS_EQUAL symbol { $$ = expr_alloc_comp(E_LEQ, $1, $3); } 453 | symbol T_GREATER symbol { $$ = expr_alloc_comp(E_GTH, $1, $3); } 454 | symbol T_GREATER_EQUAL symbol { $$ = expr_alloc_comp(E_GEQ, $1, $3); } 455 | symbol T_EQUAL symbol { $$ = expr_alloc_comp(E_EQUAL, $1, $3); } 456 | symbol T_UNEQUAL symbol { $$ = expr_alloc_comp(E_UNEQUAL, $1, $3); } 492 struct symbol *sym; [all …]
|
A D | menu.c | 47 void menu_add_entry(struct symbol *sym) in menu_add_entry() 113 struct symbol *sym = current_entry->sym; in menu_set_type() 220 static int menu_validate_number(struct symbol *sym, struct symbol *sym2) in menu_validate_number() 226 static void sym_check_prop(struct symbol *sym) in sym_check_prop() 229 struct symbol *sym2; in sym_check_prop() 293 struct symbol *sym; in menu_finalize() 399 struct symbol *es = prop_get_symbol(prop); in menu_finalize() 403 struct symbol *es = prop_get_symbol(prop); in menu_finalize() 627 struct symbol *sym; in menu_is_visible() 842 struct symbol *sym; in get_relations_str() [all …]
|
A D | confdata.c | 356 struct symbol *sym; in conf_read_simple() 515 struct symbol *sym; in conf_read() 772 struct symbol *sym; in conf_write_defconfig() 811 struct symbol *cs; in conf_write_defconfig() 812 struct symbol *ds; in conf_write_defconfig() 846 struct symbol *sym; in conf_write() 991 struct symbol *sym; in conf_touch_deps() 1062 struct symbol *sym; in conf_write_autoconf() 1173 struct symbol *sym; in randomize_choice_values() 1221 struct symbol *sym; in set_all_choice_values() [all …]
|
A D | conf.c | 83 static int conf_askvalue(struct symbol *sym, const char *def) in conf_askvalue() 131 struct symbol *sym = menu->sym; in conf_string() 164 struct symbol *sym = menu->sym; in conf_sym() 231 struct symbol *sym, *def_sym; in conf_choice() 346 struct symbol *sym; in conf() 413 struct symbol *sym; in check_conf()
|
A D | qconf.h | 260 QString debug_info(struct symbol *sym); 262 static void expr_print_help(void *data, struct symbol *sym, const char *str); 266 struct symbol *sym; 288 struct symbol **result;
|
A D | expr.c | 19 struct expr *expr_alloc_symbol(struct symbol *sym) in expr_alloc_symbol() 44 struct expr *expr_alloc_comp(enum expr_type type, struct symbol *s1, struct symbol *s2) in expr_alloc_comp() 428 struct symbol *sym1, *sym2; in expr_join_or() 492 struct symbol *sym1, *sym2; in expr_join_and() 845 int expr_contains_symbol(struct expr *dep, struct symbol *sym) in expr_contains_symbol() 873 bool expr_depends_symbol(struct expr *dep, struct symbol *sym) in expr_depends_symbol() 916 struct expr *expr_trans_compare(struct expr *e, enum expr_type type, struct symbol *sym) in expr_trans_compare() 1133 void (*fn)(void *, struct symbol *, const char *), in expr_print() argument 1224 static void expr_print_file_helper(void *data, struct symbol *sym, const char *str) in expr_print_file_helper() 1234 static void expr_print_gstr_helper(void *data, struct symbol *sym, const char *str) in expr_print_gstr_helper() [all …]
|
A D | mconf.c | 392 struct symbol **sym_arr; in search_conf() 467 struct symbol *sym; in build_conf() 529 struct symbol *def_sym = sym_get_choice_value(sym); in build_conf() 648 struct symbol *sym; in conf() 799 struct symbol *active; in conf_choice()
|
/xen/xen/tools/kconfig/tests/err_recursive_dep/ |
A D | expected_stderr | 2 Kconfig:11: symbol B is selected by B 7 Kconfig:5: symbol A depends on A 12 Kconfig:17: symbol C1 depends on C2 13 Kconfig:21: symbol C2 depends on C1 18 Kconfig:32: symbol D2 is selected by D1 19 Kconfig:27: symbol D1 depends on D2 24 Kconfig:37: symbol E1 depends on E2 25 Kconfig:42: symbol E2 is implied by E1 30 Kconfig:60: symbol G depends on G 35 Kconfig:51: symbol F2 depends on F1 [all …]
|
/xen/tools/xentrace/ |
A D | xenctx.c | 98 struct symbol { struct 154 static void free_symbol(struct symbol *symbol) 156 if (symbol == NULL) 158 if (symbol->name) 160 free(symbol); 164 static void insert_symbol(struct symbol *symbol) in insert_symbol() argument 187 s->next = symbol; in insert_symbol() 188 prev = symbol; in insert_symbol() 206 struct symbol *s; in print_symbol() 226 struct symbol *symbol; in read_symbol_table() local [all …]
|
/xen/xen/tools/kconfig/tests/new_choice_with_dep/ |
A D | Kconfig | 6 This is a new symbol. 20 This is a new symbol, so should be asked. 37 This is a new symbol, so should be asked.
|
/xen/xen/common/xz/ |
A D | dec_lzma2.c | 522 uint32_t symbol = 1; in rc_bittree() local 526 symbol = (symbol << 1) + 1; in rc_bittree() 528 symbol <<= 1; in rc_bittree() 531 return symbol; in rc_bittree() 539 uint32_t symbol = 1; in rc_bittree_reverse() local 544 symbol = (symbol << 1) + 1; in rc_bittree_reverse() 547 symbol <<= 1; in rc_bittree_reverse() 584 uint32_t symbol; in lzma_literal() local 595 symbol = 1; in lzma_literal() 605 symbol = (symbol << 1) + 1; in lzma_literal() [all …]
|
/xen/docs/misc/ |
A D | kconfig-language.rst | 137 another symbol. The value of the current menu symbol is used as the 138 minimal value <symbol> can be set to. If <symbol> is selected multiple 156 symbol except that the "implied" symbol's value may still be set to n 192 - numerical ranges: "range" <symbol> <symbol> ["if" <expr>] 197 symbol. 220 This declares the symbol to be used as the MODULES symbol, which 237 <symbol> '=' <symbol> (2) 238 <symbol> '!=' <symbol> (3) 339 "config" <symbol> 342 This defines a config symbol <symbol> and accepts any of above [all …]
|
A D | kconfig.rst | 71 (corresponding to the `*config` command that was used) for symbol values 178 The Search function searches for kernel configuration symbol 198 is when the search matches the complete symbol name); 277 The Search function searches for kernel configuration symbol 289 lists all config symbol entries that contain "hotplug" in 290 the symbol name. In this Search dialog, you may change the
|
/xen/xen/include/acpi/platform/ |
A D | aclinux.h | 66 #define ACPI_EXPORT_SYMBOL(symbol) EXPORT_SYMBOL(symbol); argument
|
/xen/xen/tools/ |
A D | symbols.c | 87 static enum { symbol, single_source, multi_source } last; in read_symbol() enumerator 138 last = symbol; in read_symbol() 410 static void learn_symbol(unsigned char *symbol, int len) in learn_symbol() argument 415 token_profit[ symbol[i] + (symbol[i + 1] << 8) ]++; in learn_symbol() 419 static void forget_symbol(unsigned char *symbol, int len) in forget_symbol() argument 424 token_profit[ symbol[i] + (symbol[i + 1] << 8) ]--; in forget_symbol()
|
/xen/xen/common/ |
A D | unlzma.c | 168 static int INIT rc_get_bit(struct rc *rc, uint16_t *p, int *symbol) in rc_get_bit() argument 172 *symbol *= 2; in rc_get_bit() 176 *symbol = *symbol * 2 + 1; in rc_get_bit() 195 rc_bit_tree_decode(struct rc *rc, uint16_t *p, int num_levels, int *symbol) in rc_bit_tree_decode() argument 199 *symbol = 1; in rc_bit_tree_decode() 201 rc_get_bit(rc, p + *symbol, symbol); in rc_bit_tree_decode() 202 *symbol -= 1 << num_levels; in rc_bit_tree_decode()
|
/xen/tools/ocaml/xenstored/ |
A D | Makefile | 46 symbol \ 61 INTF = symbol.cmi trie.cmi syslog.cmi systemd.cmi select.cmi
|
A D | symbol.mli | 27 (** Convert a string into a symbol. *) 30 (** Convert a symbol into a string. *)
|
/xen/docs/hypervisor-guide/x86/ |
A D | how-xen-boots.rst | 43 is via the start of the binary image, which is the ``start`` symbol. This 48 Entry is still via the ``start`` symbol as with MB1, and still in 32bit mode. 83 ``efi_start`` as its entry symbol.
|
/xen/xen/arch/x86/boot/ |
A D | build32.lds | 38 * _GLOBAL_OFFSET_TABLE_ symbol and .PLT0. .PLT0 is filled by dynamic 44 * we remove .got.plt section here because it cannot find required symbol.
|
/xen/xen/common/libelf/ |
A D | libelf-loader.c | 554 uint64_t elf_lookup_addr(struct elf_binary * elf, const char *symbol) in elf_lookup_addr() argument 559 sym = elf_sym_by_name(elf, symbol); in elf_lookup_addr() 562 elf_err(elf, "%s: not found: %s\n", __func__, symbol); in elf_lookup_addr() 568 symbol, value); in elf_lookup_addr()
|