sym_tristate_within_range  184 scripts/kconfig/conf.c 		if (oldval != no && sym_tristate_within_range(sym, no))
sym_tristate_within_range  186 scripts/kconfig/conf.c 		if (oldval != mod && sym_tristate_within_range(sym, mod))
sym_tristate_within_range  188 scripts/kconfig/conf.c 		if (oldval != yes && sym_tristate_within_range(sym, yes))
sym_tristate_within_range  825 scripts/kconfig/gconf.c 		if (!sym_tristate_within_range(sym, newval))
sym_tristate_within_range 1139 scripts/kconfig/gconf.c 		if (val != no && sym_tristate_within_range(sym, no))
sym_tristate_within_range 1141 scripts/kconfig/gconf.c 		if (val != mod && sym_tristate_within_range(sym, mod))
sym_tristate_within_range 1143 scripts/kconfig/gconf.c 		if (val != yes && sym_tristate_within_range(sym, yes))
sym_tristate_within_range   39 scripts/kconfig/lkc_proto.h bool sym_tristate_within_range(struct symbol *sym,tristate tri);
sym_tristate_within_range  187 scripts/kconfig/qconf.cc 			setText(noColIdx, sym_tristate_within_range(sym, no) ? "_" : 0);
sym_tristate_within_range  189 scripts/kconfig/qconf.cc 			setText(modColIdx, sym_tristate_within_range(sym, mod) ? "_" : 0);
sym_tristate_within_range  191 scripts/kconfig/qconf.cc 			setText(yesColIdx, sym_tristate_within_range(sym, yes) ? "_" : 0);
sym_tristate_within_range  498 scripts/kconfig/symbol.c 	if (oldval != val && !sym_tristate_within_range(sym, val))
sym_tristate_within_range  626 scripts/kconfig/symbol.c 			return sym_tristate_within_range(sym, yes);
sym_tristate_within_range  628 scripts/kconfig/symbol.c 			return sym_tristate_within_range(sym, mod);
sym_tristate_within_range  630 scripts/kconfig/symbol.c 			return sym_tristate_within_range(sym, no);