Searched defs:_dll (Results 1 - 2 of 2) sorted by relevance

/external/python/cpython2/Lib/ctypes/test/
H A Dtest_cfuncs.py11 _dll = CDLL(_ctypes_test.__file__) variable in class:CFunctions
14 return c_longlong.in_dll(self._dll, "last_tf_arg_s").value
16 return c_ulonglong.in_dll(self._dll, "last_tf_arg_u").value
19 self._dll.tf_b.restype = c_byte
20 self._dll.tf_b.argtypes = (c_byte,)
21 self.assertEqual(self._dll.tf_b(-126), -42)
25 self._dll.tf_bb.restype = c_byte
26 self._dll.tf_bb.argtypes = (c_byte, c_byte)
27 self.assertEqual(self._dll.tf_bb(0, -126), -42)
31 self._dll
209 _dll = stdcall_dll(_ctypes_test.__file__) variable in class:stdcallCFunctions
[all...]
/external/python/cpython3/Lib/ctypes/test/
H A Dtest_cfuncs.py11 _dll = CDLL(_ctypes_test.__file__) variable in class:CFunctions
14 return c_longlong.in_dll(self._dll, "last_tf_arg_s").value
16 return c_ulonglong.in_dll(self._dll, "last_tf_arg_u").value
19 self._dll.tf_b.restype = c_byte
20 self._dll.tf_b.argtypes = (c_byte,)
21 self.assertEqual(self._dll.tf_b(-126), -42)
25 self._dll.tf_bb.restype = c_byte
26 self._dll.tf_bb.argtypes = (c_byte, c_byte)
27 self.assertEqual(self._dll.tf_bb(0, -126), -42)
31 self._dll
209 _dll = stdcall_dll(_ctypes_test.__file__) variable in class:stdcallCFunctions
[all...]

Completed in 67 milliseconds