Lines Matching refs:pythonhome
26 * We attempt to locate the "Python Home" - if the PYTHONHOME env var
632 wchar_t *pythonhome = Py_GetPythonHome();
699 if (pythonhome == NULL || *pythonhome == '\0') {
703 pythonhome = prefix;
705 pythonhome = prefix;
707 pythonhome = NULL;
710 wcscpy_s(prefix, MAXPATHLEN+1, pythonhome);
716 skiphome = pythonhome==NULL ? 0 : 1;
723 skipdefault = envpath!=NULL || pythonhome!=NULL || \
731 of each component replaced with pythonhome, if set;
735 - If PYTHONHOME is set (in any way) item (3) is ignored.
740 if (pythonhome != NULL) {
747 bufsz *= wcslen(pythonhome);
804 if (pythonhome == NULL) {
822 if (wcscpy_s(buf, bufsz - (buf - module_search_path), pythonhome))