Lines Matching refs:program_full_path
54 CLEAR(config->program_full_path); in pathconfig_clear()
82 COPY_ATTR(program_full_path); in pathconfig_copy()
167 COPY_CONFIG(program_full_path, executable); in pathconfig_set_from_config()
217 SET_ITEM_STR(program_full_path); in _PyPathConfig_AsDict()
401 COPY_ATTR(program_full_path, executable); in config_init_pathconfig()
548 _Py_SetProgramFullPath(const wchar_t *program_full_path) in _Py_SetProgramFullPath() argument
550 if (program_full_path == NULL || program_full_path[0] == L'\0') { in _Py_SetProgramFullPath()
557 PyMem_RawFree(_Py_path_config.program_full_path); in _Py_SetProgramFullPath()
558 _Py_path_config.program_full_path = _PyMem_RawWcsdup(program_full_path); in _Py_SetProgramFullPath()
562 if (_Py_path_config.program_full_path == NULL) { in _Py_SetProgramFullPath()
592 return _Py_path_config.program_full_path; in Py_GetProgramFullPath()