HomeSort by relevance Sort by last modified time
    Searched refs:CDLL (Results 1 - 25 of 62) sorted by null

1 2 3

  /external/python/cpython2/Lib/ctypes/test/
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__))))
test_loading.py 27 CDLL(libc_name)
28 CDLL(os.path.basename(libc_name))
29 self.assertRaises(OSError, CDLL, self.unknowndll)
34 CDLL(unicode(libc_name))
35 self.assertRaises(OSError, CDLL, unicode(self.unknowndll))
42 cdll.LoadLibrary("libc.so.6")
44 self.assertRaises(OSError, cdll.LoadLibrary, "libc.so.9")
45 self.assertRaises(OSError, cdll.LoadLibrary, self.unknowndll)
51 cdll.LoadLibrary(lib)
52 CDLL(lib
    [all...]
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)
test_checkretval.py 17 dll = CDLL(_ctypes_test.__file__)
test_values.py 14 ctdll = CDLL(_ctypes_test.__file__)
22 ctdll = CDLL(_ctypes_test.__file__)
test_errno.py 15 libc = CDLL(libc_name, use_errno=True)
33 libc = CDLL(libc_name, use_errno=False)
test_libc.py 6 lib = CDLL(_ctypes_test.__file__)
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__)
test_stringptr.py 6 lib = CDLL(_ctypes_test.__file__)
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__)
278 dll = CDLL(_ctypes_test.__file__)
test_slicing.py 69 dll = CDLL(_ctypes_test.__file__)
103 dll = CDLL(_ctypes_test.__file__)
139 dll = CDLL(_ctypes_test.__file__)
  /external/python/cpython3/Lib/ctypes/test/
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__))))
test_checkretval.py 17 dll = CDLL(_ctypes_test.__file__)
test_loading.py 29 CDLL(libc_name)
30 CDLL(os.path.basename(libc_name))
31 self.assertRaises(OSError, CDLL, self.unknowndll)
38 cdll.LoadLibrary("libc.so.6")
40 self.assertRaises(OSError, cdll.LoadLibrary, "libc.so.9")
41 self.assertRaises(OSError, cdll.LoadLibrary, self.unknowndll)
47 cdll.LoadLibrary(lib)
48 CDLL(lib)
test_errno.py 12 libc = CDLL(libc_name, use_errno=True)
29 libc = CDLL(libc_name, use_errno=False)
test_unicode.py 10 dll = ctypes.CDLL(_ctypes_test.__file__)
29 func = ctypes.CDLL(_ctypes_test.__file__)._testfunc_p_p
test_values.py 16 ctdll = CDLL(_ctypes_test.__file__)
28 ctdll = CDLL(_ctypes_test.__file__)
test_find.py 34 cls.gl = CDLL(lib_gl, mode=RTLD_GLOBAL)
39 cls.glu = CDLL(lib_glu, RTLD_GLOBAL)
44 cls.gle = CDLL(lib_gle)
test_libc.py 6 lib = CDLL(_ctypes_test.__file__)
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__)
test_callbacks.py 161 dll = CDLL(_ctypes_test.__file__)
184 libc = CDLL(libc_path)
212 dll = CDLL(_ctypes_test.__file__)
228 dll = CDLL(_ctypes_test.__file__)
272 dll = CDLL(_ctypes_test.__file__)
test_slicing.py 65 dll = CDLL(_ctypes_test.__file__)
97 dll = CDLL(_ctypes_test.__file__)
133 dll = CDLL(_ctypes_test.__file__)
  /external/bcc/tests/python/
test_uprobes.py 36 libc = ctypes.CDLL("libc.so.6")
84 libc = ctypes.CDLL("libc.so.6", use_errno=True)
121 libz = ctypes.CDLL("/tmp/libz.so.1")
  /external/python/setuptools/setuptools/
glibc.py 13 # ctypes.CDLL(None) internally calls dlopen(NULL), and as the dlopen
17 process_namespace = ctypes.CDLL(None)
  /external/chromium-trace/catapult/common/py_trace_event/py_trace_event/
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'),
166 kernel32 = (ctypes.cdll.kernel32

Completed in 753 milliseconds

1 2 3