Searched refs:newval (Results 1 – 4 of 4) sorted by relevance
/scripts/kconfig/ |
D | symbol.c | 324 struct symbol_value newval, oldval; in sym_calc_value() local 349 newval = symbol_empty.curr; in sym_calc_value() 353 newval = symbol_no.curr; in sym_calc_value() 368 sym->curr = newval; in sym_calc_value() 375 newval.tri = (prop_get_symbol(prop)->curr.val == sym) ? yes : no; in sym_calc_value() 382 newval.tri = EXPR_AND(sym->def[S_DEF_USER].tri, in sym_calc_value() 392 newval.tri = EXPR_AND(expr_calc_value(prop->expr), in sym_calc_value() 394 if (newval.tri != no) in sym_calc_value() 399 newval.tri = EXPR_OR(newval.tri, sym->implied.tri); in sym_calc_value() 400 newval.tri = EXPR_AND(newval.tri, in sym_calc_value() [all …]
|
D | lkc_proto.h | 29 bool sym_string_valid(struct symbol *sym, const char *newval); 31 bool sym_set_string_value(struct symbol *sym, const char *newval);
|
D | conf.c | 388 tristate oldval, newval; in conf_sym() local 421 newval = no; in conf_sym() 427 newval = mod; in conf_sym() 433 newval = yes; in conf_sym() 438 newval = oldval; in conf_sym() 445 if (sym_set_tristate_value(sym, newval)) in conf_sym()
|
D | gconf.c | 805 tristate newval; in change_sym_value() local 811 newval = no; in change_sym_value() 813 newval = mod; in change_sym_value() 815 newval = yes; in change_sym_value() 822 if (!sym_tristate_within_range(sym, newval)) in change_sym_value() 823 newval = yes; in change_sym_value() 824 sym_set_tristate_value(sym, newval); in change_sym_value()
|