Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/ctypes/test/
Dtest_as_parameter.py147 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))
Dtest_functions.py319 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.c311 EXPORT(int) _testfunc_byval(point in, point *pout) in _testfunc_byval() function