Searched refs:_testfunc_p_p (Results 1 – 18 of 18) sorted by relevance
/external/python/cpython2/Lib/ctypes/test/ |
D | test_checkretval.py | 18 self.assertEqual(42, dll._testfunc_p_p(42)) 20 dll._testfunc_p_p.restype = CHECKED 21 self.assertEqual("42", dll._testfunc_p_p(42)) 23 dll._testfunc_p_p.restype = None 24 self.assertEqual(None, dll._testfunc_p_p(42)) 26 del dll._testfunc_p_p.restype 27 self.assertEqual(42, dll._testfunc_p_p(42))
|
D | test_prototypes.py | 48 func = testdll._testfunc_p_p 71 func = testdll._testfunc_p_p 91 func = testdll._testfunc_p_p 106 func = testdll._testfunc_p_p 121 func = testdll._testfunc_p_p 141 func = testdll._testfunc_p_p 149 func = testdll._testfunc_p_p 165 func = testdll._testfunc_p_p 171 func = testdll._testfunc_p_p 186 func = testdll._testfunc_p_p
|
D | test_pointers.py | 24 func = dll._testfunc_p_p 39 func = dll._testfunc_p_p
|
D | test_functions.py | 168 f = dll._testfunc_p_p 178 f = dll._testfunc_p_p 213 f = dll._testfunc_p_p
|
D | test_pickling.py | 64 dll._testfunc_p_p,
|
D | test_unicode.py | 82 cls.func = ctypes.CDLL(_ctypes_test.__file__)._testfunc_p_p
|
D | test_parameters.py | 148 func = CDLL(_ctypes_test.__file__)._testfunc_p_p
|
D | test_as_parameter.py | 30 f = dll._testfunc_p_p
|
/external/python/cpython3/Lib/ctypes/test/ |
D | test_checkretval.py | 18 self.assertEqual(42, dll._testfunc_p_p(42)) 20 dll._testfunc_p_p.restype = CHECKED 21 self.assertEqual("42", dll._testfunc_p_p(42)) 23 dll._testfunc_p_p.restype = None 24 self.assertEqual(None, dll._testfunc_p_p(42)) 26 del dll._testfunc_p_p.restype 27 self.assertEqual(42, dll._testfunc_p_p(42))
|
D | test_prototypes.py | 48 func = testdll._testfunc_p_p 71 func = testdll._testfunc_p_p 94 func = testdll._testfunc_p_p 109 func = testdll._testfunc_p_p 124 func = testdll._testfunc_p_p 144 func = testdll._testfunc_p_p 152 func = testdll._testfunc_p_p 168 func = testdll._testfunc_p_p 174 func = testdll._testfunc_p_p 189 func = testdll._testfunc_p_p
|
D | test_pointers.py | 24 func = dll._testfunc_p_p 42 func = dll._testfunc_p_p
|
D | test_functions.py | 168 f = dll._testfunc_p_p 178 f = dll._testfunc_p_p 213 f = dll._testfunc_p_p
|
D | test_unicode.py | 29 func = ctypes.CDLL(_ctypes_test.__file__)._testfunc_p_p
|
D | test_pickling.py | 64 dll._testfunc_p_p,
|
D | test_parameters.py | 143 func = CDLL(_ctypes_test.__file__)._testfunc_p_p
|
D | test_as_parameter.py | 30 f = dll._testfunc_p_p
|
/external/python/cpython2/Modules/_ctypes/ |
D | _ctypes_test.c | 173 EXPORT(char *) _testfunc_p_p(void *s) in _testfunc_p_p() function
|
/external/python/cpython3/Modules/_ctypes/ |
D | _ctypes_test.c | 352 EXPORT(char *) _testfunc_p_p(void *s) in _testfunc_p_p() function
|