Searched refs:sym_tristate_within_range (Results 1 - 4 of 4) sorted by relevance
/linux-4.4.14/scripts/kconfig/ |
H A D | conf.c | 188 if (oldval != no && sym_tristate_within_range(sym, no)) conf_sym() 190 if (oldval != mod && sym_tristate_within_range(sym, mod)) conf_sym() 192 if (oldval != yes && sym_tristate_within_range(sym, yes)) conf_sym()
|
H A D | symbol.c | 473 bool sym_tristate_within_range(struct symbol *sym, tristate val) sym_tristate_within_range() function 496 if (oldval != val && !sym_tristate_within_range(sym, val)) sym_set_tristate_value() 624 return sym_tristate_within_range(sym, yes); sym_string_within_range() 626 return sym_tristate_within_range(sym, mod); sym_string_within_range() 628 return sym_tristate_within_range(sym, no); sym_string_within_range()
|
H A D | gconf.c | 826 if (!sym_tristate_within_range(sym, newval)) change_sym_value() 1140 if (val != no && sym_tristate_within_range(sym, no)) fill_row() 1142 if (val != mod && sym_tristate_within_range(sym, mod)) fill_row() 1144 if (val != yes && sym_tristate_within_range(sym, yes)) fill_row()
|
H A D | qconf.cc | 188 setText(noColIdx, sym_tristate_within_range(sym, no) ? "_" : 0); updateMenu() 190 setText(modColIdx, sym_tristate_within_range(sym, mod) ? "_" : 0); updateMenu() 192 setText(yesColIdx, sym_tristate_within_range(sym, yes) ? "_" : 0); updateMenu()
|
Completed in 103 milliseconds