Home | History | Annotate | Download | only in PC

Lines Matching refs:core_config

536 get_program_full_path(const _PyCoreConfig *core_config,
660 const _PyCoreConfig *core_config)
662 calculate->home = core_config->home;
771 calculate_module_search_path(const _PyCoreConfig *core_config,
782 int skipdefault = (core_config->module_search_path_env != NULL ||
821 if (core_config->module_search_path_env != NULL) {
822 bufsz += wcslen(core_config->module_search_path_env) + 1;
830 if (core_config->module_search_path_env) {
832 config->module_search_path = core_config->module_search_path_env;
842 if (core_config->module_search_path_env) {
844 core_config->module_search_path_env)) {
957 calculate_path_impl(const _PyCoreConfig *core_config,
967 err = get_program_full_path(core_config, calculate, config);
993 err = calculate_module_search_path(core_config, calculate, config, prefix);
1017 _PyPathConfig_Calculate(_PyPathConfig *config, const _PyCoreConfig *core_config)
1022 calculate_init(&calculate, core_config);
1024 _PyInitError err = calculate_path_impl(core_config, &calculate, config);