Searched refs:CDLL (Results 1 – 25 of 34) sorted by relevance
12
/third_party/python/Lib/ctypes/test/ |
D | test_returnfuncptrs.py | 11 dll = CDLL(_ctypes_test.__file__) 23 dll = CDLL(_ctypes_test.__file__) 37 dll = CDLL(_ctypes_test.__file__) 53 return CDLL(_ctypes_test.__file__) 59 BadSequence(("my_strchr", CDLL(_ctypes_test.__file__))))
|
D | test_loading.py | 33 CDLL(libc_name) 34 CDLL(os.path.basename(libc_name)) 35 self.assertRaises(OSError, CDLL, self.unknowndll) 52 CDLL(lib)
|
D | test_find.py | 36 cls.gl = CDLL(lib_gl, mode=RTLD_GLOBAL) 41 cls.glu = CDLL(lib_glu, RTLD_GLOBAL) 46 cls.gle = CDLL(lib_gle)
|
D | test_pointers.py | 23 dll = CDLL(_ctypes_test.__file__) 41 dll = CDLL(_ctypes_test.__file__) 80 dll = CDLL(_ctypes_test.__file__) 146 dll = CDLL(_ctypes_test.__file__)
|
D | test_callbacks.py | 163 dll = CDLL(_ctypes_test.__file__) 186 libc = CDLL(libc_path) 214 dll = CDLL(_ctypes_test.__file__) 230 dll = CDLL(_ctypes_test.__file__) 274 dll = CDLL(_ctypes_test.__file__)
|
D | test_values.py | 16 ctdll = CDLL(_ctypes_test.__file__) 28 ctdll = CDLL(_ctypes_test.__file__)
|
D | test_unicode.py | 10 dll = ctypes.CDLL(_ctypes_test.__file__) 37 func = ctypes.CDLL(_ctypes_test.__file__)._testfunc_p_p
|
D | test_errno.py | 12 libc = CDLL(libc_name, use_errno=True) 29 libc = CDLL(libc_name, use_errno=False)
|
D | test_slicing.py | 65 dll = CDLL(_ctypes_test.__file__) 97 dll = CDLL(_ctypes_test.__file__) 133 dll = CDLL(_ctypes_test.__file__)
|
D | test_win32.py | 31 dll = CDLL(_ctypes_test.__file__) 105 dll = CDLL(_ctypes_test.__file__)
|
D | test_structures.py | 419 dll = CDLL(_ctypes_test.__file__) 449 dll = CDLL(_ctypes_test.__file__) 476 dll = CDLL(_ctypes_test.__file__) 516 dll = CDLL(_ctypes_test.__file__) 611 dll = CDLL(_ctypes_test.__file__) 681 dll = CDLL(_ctypes_test.__file__)
|
D | test_checkretval.py | 17 dll = CDLL(_ctypes_test.__file__)
|
D | test_libc.py | 6 lib = CDLL(_ctypes_test.__file__)
|
D | test_stringptr.py | 7 lib = CDLL(_ctypes_test.__file__)
|
D | test_pickling.py | 5 dll = CDLL(_ctypes_test.__file__)
|
D | test_refcounts.py | 10 dll = ctypes.CDLL(_ctypes_test.__file__)
|
D | test_funcptr.py | 11 lib = CDLL(_ctypes_test.__file__)
|
D | test_parameters.py | 141 from ctypes import CDLL, c_void_p, ArgumentError 143 func = CDLL(_ctypes_test.__file__)._testfunc_p_p
|
D | test_prototypes.py | 26 testdll = CDLL(_ctypes_test.__file__)
|
D | test_as_parameter.py | 6 dll = CDLL(_ctypes_test.__file__)
|
D | test_cfuncs.py | 11 _dll = CDLL(_ctypes_test.__file__)
|
D | test_bitfields.py | 27 func = CDLL(_ctypes_test.__file__).unpack_bitfields
|
/third_party/python/Lib/ctypes/ |
D | __init__.py | 319 class CDLL(object): class 397 class PyDLL(CDLL): 406 class WinDLL(CDLL): 428 class OleDLL(CDLL): 456 cdll = LibraryLoader(CDLL)
|
D | util.py | 356 from ctypes import CDLL
|
/third_party/node/deps/v8/tools/testrunner/local/ |
D | utils.py | 117 _LIBC = ctypes.CDLL(ctypes.util.find_library('c')) 136 _LIBC = ctypes.CDLL(ctypes.util.find_library('c'),
|
12