Searched refs:CDLL (Results 1 – 25 of 29) sorted by relevance
12
/external/python/cpython2/Lib/ctypes/test/ |
D | test_returnfuncptrs.py | 12 dll = CDLL(_ctypes_test.__file__) 22 dll = CDLL(_ctypes_test.__file__) 36 dll = CDLL(_ctypes_test.__file__) 52 return CDLL(_ctypes_test.__file__) 58 BadSequence(("my_strchr", CDLL(_ctypes_test.__file__))))
|
D | test_loading.py | 26 CDLL(libc_name) 27 CDLL(os.path.basename(libc_name)) 28 self.assertRaises(OSError, CDLL, self.unknowndll) 45 CDLL(lib)
|
D | test_find.py | 37 self.gl = CDLL(lib_gl, mode=RTLD_GLOBAL) 42 self.glu = CDLL(lib_glu, RTLD_GLOBAL) 47 self.gle = CDLL(lib_gle)
|
D | test_callbacks.py | 167 dll = CDLL(_ctypes_test.__file__) 190 libc = CDLL(libc_path) 218 dll = CDLL(_ctypes_test.__file__) 234 dll = CDLL(_ctypes_test.__file__) 272 dll = CDLL(_ctypes_test.__file__)
|
D | test_pointers.py | 23 dll = CDLL(_ctypes_test.__file__) 38 dll = CDLL(_ctypes_test.__file__) 77 dll = CDLL(_ctypes_test.__file__) 143 dll = CDLL(_ctypes_test.__file__)
|
D | test_values.py | 14 ctdll = CDLL(_ctypes_test.__file__) 22 ctdll = CDLL(_ctypes_test.__file__)
|
D | test_errno.py | 15 libc = CDLL(libc_name, use_errno=True) 33 libc = CDLL(libc_name, use_errno=False)
|
D | test_slicing.py | 69 dll = CDLL(_ctypes_test.__file__) 103 dll = CDLL(_ctypes_test.__file__) 139 dll = CDLL(_ctypes_test.__file__)
|
D | test_unicode.py | 11 dll = ctypes.CDLL(_ctypes_test.__file__) 82 cls.func = ctypes.CDLL(_ctypes_test.__file__)._testfunc_p_p
|
D | test_checkretval.py | 17 dll = CDLL(_ctypes_test.__file__)
|
D | test_libc.py | 6 lib = CDLL(_ctypes_test.__file__)
|
D | test_parameters.py | 145 from ctypes import CDLL, c_void_p, ArgumentError 147 func = CDLL(_ctypes_test.__file__)._testfunc_p_p
|
D | test_stringptr.py | 6 lib = CDLL(_ctypes_test.__file__)
|
D | test_pickling.py | 5 dll = CDLL(_ctypes_test.__file__)
|
D | test_refcounts.py | 9 dll = ctypes.CDLL(_ctypes_test.__file__)
|
D | test_funcptr.py | 11 lib = CDLL(_ctypes_test.__file__)
|
D | test_win32.py | 91 dll = CDLL(_ctypes_test.__file__)
|
D | test_prototypes.py | 26 testdll = CDLL(_ctypes_test.__file__)
|
D | test_as_parameter.py | 6 dll = CDLL(_ctypes_test.__file__)
|
D | test_bitfields.py | 28 func = CDLL(_ctypes_test.__file__).unpack_bitfields
|
D | test_cfuncs.py | 11 _dll = CDLL(_ctypes_test.__file__)
|
/external/chromium-trace/catapult/common/py_trace_event/py_trace_event/ |
D | trace_time.py | 56 libc = ctypes.CDLL('/usr/lib/libc.dylib', use_errno=True) 92 clock_gettime = ctypes.CDLL(ctypes.util.find_library('c'), 96 clock_gettime = ctypes.CDLL(ctypes.util.find_library('rt'),
|
/external/python/cpython2/Lib/ctypes/ |
D | __init__.py | 329 class CDLL(object): class 385 class PyDLL(CDLL): 394 class WinDLL(CDLL): 416 class OleDLL(CDLL): 442 cdll = LibraryLoader(CDLL)
|
/external/autotest/client/site_tests/kernel_CryptoAPI/ |
D | kernel_CryptoAPI.py | 94 libc = ctypes.CDLL("libc.so.6", use_errno=True)
|
/external/python/cpython2/Lib/ |
D | uuid.py | 455 lib = ctypes.CDLL(ctypes.util.find_library(libname))
|
12