Searched refs:newval (Results 1 – 7 of 7) sorted by relevance
/busybox-1.35.0/scripts/kconfig/ |
D | symbol.c | 264 struct symbol_value newval, oldval; in sym_calc_value() local 281 newval = symbol_empty.curr; in sym_calc_value() 285 newval = symbol_no.curr; in sym_calc_value() 298 sym->curr = newval; in sym_calc_value() 305 newval.tri = (prop_get_symbol(prop)->curr.val == sym) ? yes : no; in sym_calc_value() 309 newval.tri = sym->user.tri; in sym_calc_value() 313 newval.tri = expr_calc_value(prop->expr); in sym_calc_value() 315 newval.tri = E_OR(E_AND(newval.tri, sym->visible), sym->rev_dep.tri); in sym_calc_value() 320 newval.tri = expr_calc_value(prop->expr); in sym_calc_value() 323 if (newval.tri == mod && sym_get_type(sym) == S_BOOLEAN) in sym_calc_value() [all …]
|
D | lkc_proto.h | 29 P(sym_string_valid,bool,(struct symbol *sym, const char *newval)); 31 P(sym_set_string_value,bool,(struct symbol *sym, const char *newval));
|
D | conf.c | 247 tristate oldval, newval; in conf_sym() local 282 newval = no; in conf_sym() 288 newval = mod; in conf_sym() 294 newval = yes; in conf_sym() 299 newval = oldval; in conf_sym() 306 if (sym_set_tristate_value(sym, newval)) in conf_sym()
|
D | gconf.c | 919 tristate oldval, newval; in change_sym_value() local 925 newval = no; in change_sym_value() 927 newval = mod; in change_sym_value() 929 newval = yes; in change_sym_value() 937 if (!sym_tristate_within_range(sym, newval)) in change_sym_value() 938 newval = yes; in change_sym_value() 939 sym_set_tristate_value(sym, newval); in change_sym_value()
|
/busybox-1.35.0/libbb/ |
D | obscure.c | 174 int FAST_FUNC obscure(const char *old, const char *newval, const struct passwd *pw) in obscure() argument 178 msg = obscure_msg(old, newval, pw); in obscure()
|
/busybox-1.35.0/include/ |
D | libbb.h | 1763 extern int obscure(const char *old, const char *newval, const struct passwd *pwdp) FAST_FUNC;
|
/busybox-1.35.0/shell/ |
D | ash.c | 8546 changepath(const char *newval) in changepath() argument 8552 new = newval; in changepath()
|