Searched refs:sym_tristate_within_range (Results 1 – 5 of 5) sorted by relevance
/l4re-core-master/uclibc/lib/contrib/uclibc/extra/config/ |
A D | conf.c | 188 if (oldval != no && sym_tristate_within_range(sym, no)) in conf_sym() 190 if (oldval != mod && sym_tristate_within_range(sym, mod)) in conf_sym() 192 if (oldval != yes && sym_tristate_within_range(sym, yes)) in conf_sym()
|
A D | lkc_proto.h | 42 P(sym_tristate_within_range,bool,(struct symbol *sym,tristate tri));
|
A D | symbol.c | 473 bool sym_tristate_within_range(struct symbol *sym, tristate val) in sym_tristate_within_range() function 496 if (oldval != val && !sym_tristate_within_range(sym, val)) in sym_set_tristate_value() 624 return sym_tristate_within_range(sym, yes); in sym_string_within_range() 626 return sym_tristate_within_range(sym, mod); in sym_string_within_range() 628 return sym_tristate_within_range(sym, no); in sym_string_within_range()
|
A D | gconf.c | 850 if (!sym_tristate_within_range(sym, newval)) in change_sym_value() 1164 if (val != no && sym_tristate_within_range(sym, no)) in fill_row() 1166 if (val != mod && sym_tristate_within_range(sym, mod)) in fill_row() 1168 if (val != yes && sym_tristate_within_range(sym, yes)) in fill_row()
|
A D | qconf.cc | 199 setText(noColIdx, sym_tristate_within_range(sym, no) ? "_" : 0); in updateMenu() 201 setText(modColIdx, sym_tristate_within_range(sym, mod) ? "_" : 0); in updateMenu() 203 setText(yesColIdx, sym_tristate_within_range(sym, yes) ? "_" : 0); in updateMenu()
|
Completed in 11 milliseconds