Searched refs:_testfunc_byval (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython2/Lib/ctypes/test/ |
D | test_as_parameter.py | 147 result = dll._testfunc_byval(ptin, byref(ptout)) 155 dll._testfunc_byval.argtypes = (POINT, POINTER(POINT)) 156 dll._testfunc_byval.restype = c_int 157 result = dll._testfunc_byval(self.wrap(ptin), byref(ptout))
|
D | test_functions.py | 319 result = dll._testfunc_byval(ptin, byref(ptout)) 327 dll._testfunc_byval.argtypes = (POINT, POINTER(POINT)) 328 dll._testfunc_byval.restype = c_int 329 result = dll._testfunc_byval(ptin, byref(ptout))
|
/external/python/cpython3/Lib/ctypes/test/ |
D | test_as_parameter.py | 147 result = dll._testfunc_byval(ptin, byref(ptout)) 155 dll._testfunc_byval.argtypes = (POINT, POINTER(POINT)) 156 dll._testfunc_byval.restype = c_int 157 result = dll._testfunc_byval(self.wrap(ptin), byref(ptout))
|
D | test_functions.py | 319 result = dll._testfunc_byval(ptin, byref(ptout)) 327 dll._testfunc_byval.argtypes = (POINT, POINTER(POINT)) 328 dll._testfunc_byval.restype = c_int 329 result = dll._testfunc_byval(ptin, byref(ptout))
|
/external/python/cpython2/Modules/_ctypes/ |
D | _ctypes_test.c | 324 EXPORT(int) _testfunc_byval(point in, point *pout) in _testfunc_byval() function
|
/external/python/cpython3/Modules/_ctypes/ |
D | _ctypes_test.c | 500 EXPORT(int) _testfunc_byval(point in, point *pout) in _testfunc_byval() function
|