Lines Matching refs:configured_value
430 static wchar_t configured_value[MSGSIZE]; in get_configured_value() local
436 _snwprintf_s(configured_value, MSGSIZE, _TRUNCATE, L"py_%ls", key); in get_configured_value()
437 result = get_env(configured_value); in get_configured_value()
441 configured_value, MSGSIZE, in get_configured_value()
444 result = configured_value; in get_configured_value()
451 configured_value, MSGSIZE, in get_configured_value()
454 result = configured_value; in get_configured_value()
475 wchar_t * configured_value; in locate_python() local
482 configured_value = get_configured_value(config_key); in locate_python()
483 if (configured_value != NULL) in locate_python()
484 wanted_ver = configured_value; in locate_python()
497 configured_value = get_configured_value(config_key); in locate_python()
498 if (configured_value) in locate_python()
499 result = find_python_by_version(configured_value); in locate_python()