Lines Matching refs:wanted_ver
527 find_python_by_version(wchar_t const * wanted_ver) in find_python_by_version() argument
532 size_t wlen = wcslen(wanted_ver); in find_python_by_version()
535 if (wcsstr(wanted_ver, L"-32")) { in find_python_by_version()
539 else if (wcsstr(wanted_ver, L"-64")) { /* Added option to select 64 bit explicitly */ in find_python_by_version()
556 if ((wcsncmp(ip->version, wanted_ver, n) == 0) && in find_python_by_version()
620 locate_python(wchar_t * wanted_ver, BOOL from_shebang) in locate_python() argument
626 size_t n = wcslen(wanted_ver); in locate_python()
633 *last_char = *wanted_ver; in locate_python()
636 wanted_ver = configured_value; in locate_python()
638 if (*wanted_ver) { in locate_python()
639 result = find_python_by_version(wanted_ver); in locate_python()
640 debug(L"search for Python version '%ls' found ", wanted_ver); in locate_python()