Home | History | Annotate | Download | only in test

Lines Matching refs:POINTER

91         f.argtypes = [c_int, c_int, POINTER(c_int)]
187 f.restype = POINTER(c_int)
188 f.argtypes = [POINTER(c_int)]
191 # function is still alive while the pointer (the result) is
196 self.assertEqual(pointer(v).contents.value, 42)
197 result = f(pointer(v))
198 self.assertEqual(type(result), POINTER(c_int))
202 result = f(pointer(v))
205 p = pointer(c_int(99))
216 # of the pointer:
334 dll._testfunc_byval.argtypes = (POINT, POINTER(POINT))