Home | History | Annotate | Download | only in test

Lines Matching defs:dll

18 dll = CDLL(_ctypes_test.__file__)
71 f = dll._testfunc_i_bhilfd
82 f = dll._testfunc_i_bhilfd
89 f = dll._testfunc_v
97 f = dll._testfunc_i_bhilfd
123 f = dll._testfunc_f_bhilfd
135 f = dll._testfunc_d_bhilfd
147 f = dll._testfunc_D_bhilfD
163 f = dll._testfunc_q_bhilfd
169 f = dll._testfunc_q_bhilfdq
176 f = dll._testfunc_p_p
186 f = dll._testfunc_p_p
221 f = dll._testfunc_p_p
231 f = dll._testfunc_callback_i_if
251 f = dll._testfunc_callback_i_if
283 f = dll._testfunc_callback_i_if
301 f = dll._testfunc_callback_q_qf
317 self.assertRaises(AttributeError, getattr, dll, "_xxx_yyy")
318 self.assertRaises(ValueError, c_int.in_dll, dll, "_xxx_yyy")
326 result = dll._testfunc_byval(ptin, byref(ptout))
334 dll._testfunc_byval.argtypes = (POINT, POINTER(POINT))
335 dll._testfunc_byval.restype = c_int
336 result = dll._testfunc_byval(ptin, byref(ptout))
345 dll.ret_2h_func.restype = S2H
346 dll.ret_2h_func.argtypes = [S2H]
348 s2h = dll.ret_2h_func(inp)
376 dll.ret_8i_func.restype = S8I
377 dll.ret_8i_func.argtypes = [S8I]
379 s8i = dll.ret_8i_func(inp)