Home
last modified time | relevance | path

Searched refs:PPROC (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Modules/_ctypes/
Dctypes.h308 typedef int(* PPROC)(void); typedef
310 PyObject *_ctypes_callproc(PPROC pProc,
Dcallproc.c773 PPROC pProc, in _call_function_pointer()
1086 PyObject *_ctypes_callproc(PPROC pProc, in _ctypes_callproc()
1340 PPROC *lpVtbl; in call_commethod()
1373 lpVtbl = (PPROC *)(pIunk->lpVtbl); in call_commethod()
1498 result = _ctypes_callproc((PPROC)func, in call_function()
1529 result = _ctypes_callproc((PPROC)func, in call_cdeclfunction()
D_ctypes.c3187 static PPROC FindAddress(void *handle, char *name, PyObject *type) in FindAddress()
3193 return (PPROC)GetProcAddress(handle, name); in FindAddress()
3195 PPROC address; in FindAddress()
3200 address = (PPROC)GetProcAddress(handle, name); in FindAddress()
3221 address = (PPROC)GetProcAddress(handle, mangled_name); in FindAddress()
3405 address = (PPROC)ctypes_dlsym(handle, name); in PyCFuncPtr_FromDll()