Lines Matching defs:config
3806 const PyConfig *config = _PyInterpreterState_GetConfig(interp);
3807 const wchar_t *filesystem_errors = config->filesystem_errors;
4044 const PyConfig *config = _PyInterpreterState_GetConfig(interp);
4045 const wchar_t *filesystem_errors = config->filesystem_errors;
15946 PyConfig *config = (PyConfig*)_PyInterpreterState_GetConfig(interp);
15947 if (config_get_codec_name(&config->stdio_encoding) < 0) {
15958 const PyConfig *config = _PyInterpreterState_GetConfig(interp);
15961 error_handler = get_error_handler_wide(config->filesystem_errors);
15968 if (encode_wstr_utf8(config->filesystem_encoding,
15974 if (encode_wstr_utf8(config->filesystem_errors,
16017 PyConfig *config = (PyConfig*)_PyInterpreterState_GetConfig(interp);
16018 if (config_get_codec_name(&config->filesystem_encoding) < 0) {
16060 PyConfig *config = (PyConfig *)_PyInterpreterState_GetConfig(interp);
16072 PyMem_RawFree(config->filesystem_encoding);
16073 config->filesystem_encoding = encoding;
16074 PyMem_RawFree(config->filesystem_errors);
16075 config->filesystem_errors = errors;