Lines Matching refs:home
38 wchar_t *home;
75 CLEAR(home);
116 COPY(home);
163 COPY(home);
234 if (_Py_path_config.home != NULL) {
235 _Py_path_config.stdlib_dir = _PyMem_RawWcsdup(_Py_path_config.home);
256 Py_SetPythonHome(const wchar_t *home)
258 int has_value = home && home[0];
263 PyMem_RawFree(_Py_path_config.home);
264 _Py_path_config.home = NULL;
267 _Py_path_config.home = _PyMem_RawWcsdup(home);
272 if (has_value && _Py_path_config.home == NULL) {
370 return _Py_path_config.home;