Searched refs:newval (Results 1 – 4 of 4) sorted by relevance
/scripts/kconfig/ |
D | symbol.c | 325 struct symbol_value newval, oldval; in sym_calc_value() local 350 newval = symbol_empty.curr; in sym_calc_value() 354 newval = symbol_no.curr; in sym_calc_value() 369 sym->curr = newval; in sym_calc_value() 376 newval.tri = (prop_get_symbol(prop)->curr.val == sym) ? yes : no; in sym_calc_value() 383 newval.tri = EXPR_AND(sym->def[S_DEF_USER].tri, in sym_calc_value() 393 newval.tri = EXPR_AND(expr_calc_value(prop->expr), in sym_calc_value() 395 if (newval.tri != no) in sym_calc_value() 400 newval.tri = EXPR_OR(newval.tri, sym->implied.tri); in sym_calc_value() 401 newval.tri = EXPR_AND(newval.tri, in sym_calc_value() [all …]
|
D | lkc_proto.h | 28 bool sym_string_valid(struct symbol *sym, const char *newval); 30 bool sym_set_string_value(struct symbol *sym, const char *newval);
|
D | conf.c | 168 tristate oldval, newval; in conf_sym() local 201 newval = no; in conf_sym() 207 newval = mod; in conf_sym() 213 newval = yes; in conf_sym() 218 newval = oldval; in conf_sym() 225 if (sym_set_tristate_value(sym, newval)) in conf_sym()
|
D | gconf.c | 809 tristate newval; in change_sym_value() local 815 newval = no; in change_sym_value() 817 newval = mod; in change_sym_value() 819 newval = yes; in change_sym_value() 826 if (!sym_tristate_within_range(sym, newval)) in change_sym_value() 827 newval = yes; in change_sym_value() 828 sym_set_tristate_value(sym, newval); in change_sym_value()
|