Home
last modified time | relevance | path

Searched refs:module_search_path_env (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython3/PC/
Dgetpathp.c782 int skipdefault = (core_config->module_search_path_env != NULL || in calculate_module_search_path()
821 if (core_config->module_search_path_env != NULL) { in calculate_module_search_path()
822 bufsz += wcslen(core_config->module_search_path_env) + 1; in calculate_module_search_path()
830 if (core_config->module_search_path_env) { in calculate_module_search_path()
832 config->module_search_path = core_config->module_search_path_env; in calculate_module_search_path()
842 if (core_config->module_search_path_env) { in calculate_module_search_path()
844 core_config->module_search_path_env)) { in calculate_module_search_path()
/external/python/cpython3/Modules/
Dgetpath.c807 if (core_config->module_search_path_env != NULL) { in calculate_module_search_path()
808 bufsz += wcslen(core_config->module_search_path_env) + 1; in calculate_module_search_path()
842 if (core_config->module_search_path_env) { in calculate_module_search_path()
843 wcscpy(buf, core_config->module_search_path_env); in calculate_module_search_path()
Dmain.c1965 config->module_search_path_env = path; in config_read_env_vars()
2448 CLEAR(config->module_search_path_env); in _PyCoreConfig_Clear()
2516 COPY_STR_ATTR(module_search_path_env); in _PyCoreConfig_Copy()
2601 SET_ITEM_WSTR(module_search_path_env); in _PyCoreConfig_AsDict()
/external/python/cpython3/Include/
Dpystate.h61 wchar_t *module_search_path_env; /* PYTHONPATH environment variable */ member