Lines Matching refs:venv_cfg_path
1733 wchar_t * venv_cfg_path;
1809 venv_cfg_path = wcsdup_pad(argv0, 32, &newlen);
1810 if (!venv_cfg_path) {
1813 p = wcsrchr(venv_cfg_path, L'\\');
1819 wcscat_s(venv_cfg_path, newlen, L"\\pyvenv.cfg");
1820 attrs = GetFileAttributesW(venv_cfg_path);
1822 debug(L"File '%ls' non-existent\n", venv_cfg_path);
1824 p = wcsrchr(venv_cfg_path, L'\\');
1827 wcscat_s(venv_cfg_path, newlen, L"\\pyvenv.cfg");
1828 attrs = GetFileAttributesW(venv_cfg_path);
1830 debug(L"File '%ls' non-existent\n", venv_cfg_path);
1835 debug(L"Using venv configuration file '%ls'\n", venv_cfg_path);
1913 if (_wfopen_s(&f, venv_cfg_path, L"r")) {
1914 error(RC_BAD_VENV_CFG, L"Cannot read '%ls'", venv_cfg_path);
1922 venv_cfg_path);
1939 venv_cfg_path);
1949 venv_cfg_path);