Home
last modified time | relevance | path

Searched refs:retValueBuf (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/PC/
Dwinreg.c1157 wchar_t *retValueBuf; in winreg_EnumValue_impl() local
1180 retValueBuf = PyMem_New(wchar_t, retValueSize); in winreg_EnumValue_impl()
1181 if (retValueBuf == NULL) in winreg_EnumValue_impl()
1185 PyMem_Free(retValueBuf); in winreg_EnumValue_impl()
1193 retValueBuf, in winreg_EnumValue_impl()
1226 retVal = Py_BuildValue("uOi", retValueBuf, obData, typ); in winreg_EnumValue_impl()
1229 PyMem_Free(retValueBuf); in winreg_EnumValue_impl()
/external/python/cpython2/PC/
D_winreg.c1195 char *retValueBuf; in PyEnumValue() local
1219 retValueBuf = (char *)PyMem_Malloc(retValueSize); in PyEnumValue()
1220 if (retValueBuf == NULL) in PyEnumValue()
1224 PyMem_Free(retValueBuf); in PyEnumValue()
1232 retValueBuf, in PyEnumValue()
1265 retVal = Py_BuildValue("sOi", retValueBuf, obData, typ); in PyEnumValue()
1268 PyMem_Free(retValueBuf); in PyEnumValue()