Home
last modified time | relevance | path

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

/external/python/cpython3/PC/
Dwinreg.c1104 wchar_t *retValueBuf; in winreg_EnumValue_impl() local
1123 retValueBuf = PyMem_New(wchar_t, retValueSize); in winreg_EnumValue_impl()
1124 if (retValueBuf == NULL) in winreg_EnumValue_impl()
1128 PyMem_Free(retValueBuf); in winreg_EnumValue_impl()
1136 retValueBuf, in winreg_EnumValue_impl()
1169 retVal = Py_BuildValue("uOi", retValueBuf, obData, typ); in winreg_EnumValue_impl()
1172 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()