Searched refs:newval (Results 1 – 4 of 4) sorted by relevance
/scripts/kconfig/ |
D | symbol.c | 319 struct symbol_value newval, oldval; in sym_calc_value() local 344 newval = symbol_empty.curr; in sym_calc_value() 348 newval = symbol_no.curr; in sym_calc_value() 363 sym->curr = newval; in sym_calc_value() 370 newval.tri = (prop_get_symbol(prop)->curr.val == sym) ? yes : no; in sym_calc_value() 377 newval.tri = EXPR_AND(sym->def[S_DEF_USER].tri, in sym_calc_value() 387 newval.tri = EXPR_AND(expr_calc_value(prop->expr), in sym_calc_value() 389 if (newval.tri != no) in sym_calc_value() 394 newval.tri = EXPR_OR(newval.tri, sym->implied.tri); in sym_calc_value() 400 newval.tri = EXPR_OR(newval.tri, sym->rev_dep.tri); in sym_calc_value() [all …]
|
D | lkc_proto.h | 42 bool sym_string_valid(struct symbol *sym, const char *newval); 44 bool sym_set_string_value(struct symbol *sym, const char *newval);
|
D | conf.c | 165 tristate oldval, newval; in conf_sym() local 198 newval = no; in conf_sym() 204 newval = mod; in conf_sym() 210 newval = yes; in conf_sym() 215 newval = oldval; in conf_sym() 222 if (sym_set_tristate_value(sym, newval)) in conf_sym()
|
D | gconf.c | 808 tristate newval; in change_sym_value() local 814 newval = no; in change_sym_value() 816 newval = mod; in change_sym_value() 818 newval = yes; in change_sym_value() 825 if (!sym_tristate_within_range(sym, newval)) in change_sym_value() 826 newval = yes; in change_sym_value() 827 sym_set_tristate_value(sym, newval); in change_sym_value()
|