Lines Matching refs:config_str
846 /* Copy str into *config_str (duplicate the string) */
848 PyConfig_SetString(PyConfig *config, wchar_t **config_str, const wchar_t *str)
865 PyMem_RawFree(*config_str);
866 *config_str = str2;
872 config_set_bytes_string(PyConfig *config, wchar_t **config_str,
896 PyMem_RawFree(*config_str);
897 *config_str = str2;
902 #define CONFIG_SET_BYTES_STR(config, config_str, str, NAME) \
903 config_set_bytes_string(config, config_str, str, "cannot decode " NAME)
906 /* Decode str using Py_DecodeLocale() and set the result into *config_str.
910 PyConfig_SetBytesString(PyConfig *config, wchar_t **config_str,
913 return CONFIG_SET_BYTES_STR(config, config_str, str, "string");