Lines Matching refs:wstr
1218 wchar_t *wstr = PyUnicode_AsWideCharString(item, NULL);
1219 if (wstr == NULL) {
1222 status = PyConfig_SetString(config, result, wstr);
1223 PyMem_Free(wstr);
1259 wchar_t *wstr = PyUnicode_AsWideCharString(item, NULL);
1260 if (wstr == NULL) {
1263 PyStatus status = PyWideStringList_Append(&wstrlist, wstr);
1264 PyMem_Free(wstr);
1593 config_wstr_to_int(const wchar_t *wstr, int *result)
1595 const wchar_t *endptr = wstr;
1597 long value = wcstol(wstr, (wchar_t **)&endptr, 10);