Lines Matching refs:retValueSize
1198 DWORD retValueSize, bufValueSize; in PyEnumValue() local
1211 &retValueSize, &retDataSize, NULL, NULL)) in PyEnumValue()
1215 ++retValueSize; /* include null terminators */ in PyEnumValue()
1218 bufValueSize = retValueSize; in PyEnumValue()
1219 retValueBuf = (char *)PyMem_Malloc(retValueSize); in PyEnumValue()
1233 &retValueSize, in PyEnumValue()
1252 retValueSize = bufValueSize; in PyEnumValue()
1278 DWORD retValueSize; in PyExpandEnvironmentStrings() local
1285 retValueSize = ExpandEnvironmentStringsW(src, retValue, 0); in PyExpandEnvironmentStrings()
1286 if (retValueSize == 0) { in PyExpandEnvironmentStrings()
1287 return PyErr_SetFromWindowsErrWithFunction(retValueSize, in PyExpandEnvironmentStrings()
1290 retValue = (Py_UNICODE *)PyMem_Malloc(retValueSize * sizeof(Py_UNICODE)); in PyExpandEnvironmentStrings()
1295 rc = ExpandEnvironmentStringsW(src, retValue, retValueSize); in PyExpandEnvironmentStrings()
1298 return PyErr_SetFromWindowsErrWithFunction(retValueSize, in PyExpandEnvironmentStrings()