Lines Matching refs:configured_value
459 static wchar_t configured_value[MSGSIZE]; in get_configured_value() local
465 _snwprintf_s(configured_value, MSGSIZE, _TRUNCATE, L"py_%ls", key); in get_configured_value()
466 result = get_env(configured_value); in get_configured_value()
470 configured_value, MSGSIZE, in get_configured_value()
473 result = configured_value; in get_configured_value()
480 configured_value, MSGSIZE, in get_configured_value()
483 result = configured_value; in get_configured_value()
504 wchar_t * configured_value; in locate_python() local
511 configured_value = get_configured_value(config_key); in locate_python()
512 if (configured_value != NULL) in locate_python()
513 wanted_ver = configured_value; in locate_python()
526 configured_value = get_configured_value(config_key); in locate_python()
527 if (configured_value) in locate_python()
528 result = find_python_by_version(configured_value); in locate_python()