Home
last modified time | relevance | path

Searched refs:newval (Results 1 – 4 of 4) sorted by relevance

/scripts/kconfig/
Dsymbol.c325 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 …]
Dlkc_proto.h28 bool sym_string_valid(struct symbol *sym, const char *newval);
30 bool sym_set_string_value(struct symbol *sym, const char *newval);
Dconf.c168 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()
Dgconf.c809 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()