Home
last modified time | relevance | path

Searched refs:resbuf (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Modules/_ctypes/
Dcallproc.c1082 void *resbuf; in _ctypes_callproc() local
1148 resbuf = alloca(max(rtype->size, sizeof(ffi_arg))); in _ctypes_callproc()
1153 if (resbuf != NULL) { in _ctypes_callproc()
1154 __msan_unpoison(resbuf, max(rtype->size, sizeof(ffi_arg))); in _ctypes_callproc()
1159 if (!resbuf || !avalues || !atypes) { in _ctypes_callproc()
1185 rtype, resbuf, in _ctypes_callproc()
1205 resbuf = (char *)resbuf + sizeof(ffi_arg) - rtype->size; in _ctypes_callproc()
1210 if (*(int *)resbuf & 0x80000000) in _ctypes_callproc()
1211 retval = GetComError(*(HRESULT *)resbuf, iid, pIunk); in _ctypes_callproc()
1213 retval = PyLong_FromLong(*(int *)resbuf); in _ctypes_callproc()
[all …]
/external/ltp/testcases/kernel/syscalls/gethostbyname_r/
Dgethostbyname_r01.c68 struct hostent resbuf; in check_vulnerable() local
84 retval = gethostbyname_r(name, &resbuf, temp.buffer, in check_vulnerable()
/external/python/cpython2/Modules/_ctypes/
Dcallproc.c1100 void *resbuf; in _ctypes_callproc() local
1168 resbuf = alloca(max(rtype->size, sizeof(ffi_arg))); in _ctypes_callproc()
1172 if (!resbuf || !avalues || !atypes) { in _ctypes_callproc()
1185 rtype, resbuf, in _ctypes_callproc()
1205 resbuf = (char *)resbuf + sizeof(ffi_arg) - rtype->size; in _ctypes_callproc()
1210 if (*(int *)resbuf & 0x80000000) in _ctypes_callproc()
1211 retval = GetComError(*(HRESULT *)resbuf, iid, pIunk); in _ctypes_callproc()
1213 retval = PyInt_FromLong(*(int *)resbuf); in _ctypes_callproc()
1215 if (*(int *)resbuf & 0x80000000) in _ctypes_callproc()
1216 retval = PyErr_SetFromWindowsErr(*(int *)resbuf); in _ctypes_callproc()
[all …]
/external/kernel-headers/original/uapi/linux/
Di2o-dev.h61 void __user *resbuf; /* Buffer for result */ member
70 void __user *resbuf; /* Result List buffer */ member
89 void __user *resbuf; /* Buffer for reply HTML page */ member
/external/mksh/src/
Dexec.c1594 hereinval(struct ioword *iop, int sub, char **resbuf, struct shf *shf) in hereinval() argument
1620 if (resbuf == NULL) in hereinval()
1623 strdupx(*resbuf, ccp, APERM); in hereinval()
1630 herein(struct ioword *iop, char **resbuf) in herein() argument
1641 if (resbuf != NULL) in herein()
1642 return (hereinval(iop, i, resbuf, NULL)); in herein()
/external/libxml2/
Dxmlreader.c1706 xmlChar *resbuf; in xmlTextReaderReadInnerXml() local
1731 resbuf = buff->content; in xmlTextReaderReadInnerXml()
1735 return resbuf; in xmlTextReaderReadInnerXml()
1753 xmlChar *resbuf; in xmlTextReaderReadOuterXml() local
1776 resbuf = buff->content; in xmlTextReaderReadOuterXml()
1781 return resbuf; in xmlTextReaderReadOuterXml()