Searched refs:sym_tristate_within_range (Results 1 - 5 of 5) sorted by relevance

/scripts/kconfig/
H A Dlkc_proto.h39 P(sym_tristate_within_range,bool,(struct symbol *sym,tristate tri));
H A Dconf.c184 if (oldval != no && sym_tristate_within_range(sym, no))
186 if (oldval != mod && sym_tristate_within_range(sym, mod))
188 if (oldval != yes && sym_tristate_within_range(sym, yes))
H A Dsymbol.c455 bool sym_tristate_within_range(struct symbol *sym, tristate val) function
478 if (oldval != val && !sym_tristate_within_range(sym, val))
606 return sym_tristate_within_range(sym, yes);
608 return sym_tristate_within_range(sym, mod);
610 return sym_tristate_within_range(sym, no);
H A Dgconf.c850 if (!sym_tristate_within_range(sym, newval))
1164 if (val != no && sym_tristate_within_range(sym, no))
1166 if (val != mod && sym_tristate_within_range(sym, mod))
1168 if (val != yes && sym_tristate_within_range(sym, yes))
H A Dqconf.cc198 setText(noColIdx, sym_tristate_within_range(sym, no) ? "_" : 0);
200 setText(modColIdx, sym_tristate_within_range(sym, mod) ? "_" : 0);
202 setText(yesColIdx, sym_tristate_within_range(sym, yes) ? "_" : 0);

Completed in 206 milliseconds