HomeSort by relevance Sort by last modified time
    Searched full:cdll (Results 1 - 25 of 57) sorted by null

1 2 3

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_loading.py 26 CDLL(libc_name)
27 CDLL(os.path.basename(libc_name))
28 self.assertRaises(OSError, CDLL, self.unknowndll)
32 cdll.LoadLibrary("libc.so.6")
34 self.assertRaises(OSError, cdll.LoadLibrary, "libc.so.9")
35 self.assertRaises(OSError, cdll.LoadLibrary, self.unknowndll)
41 cdll.LoadLibrary(lib)
42 CDLL(lib)
test_find.py 34 self.gl = CDLL(lib_gl, mode=RTLD_GLOBAL)
36 self.glu = CDLL(lib_glu, RTLD_GLOBAL)
39 self.gle = CDLL(lib_gle)
61 ## # at least some libraries can be loaded as attributes of the cdll
75 ## libm = cdll.libm
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_checkretval.py 16 dll = CDLL(_ctypes_test.__file__)
test_libc.py 6 lib = CDLL(_ctypes_test.__file__)
test_errno.py 15 libc = CDLL(libc_name, use_errno=True)
33 libc = CDLL(libc_name, use_errno=False)
test_values.py 13 ctdll = CDLL(_ctypes_test.__file__)
21 ctdll = CDLL(_ctypes_test.__file__)
test_win32.py 30 IsWindow = cdll.user32.IsWindow
86 dll = CDLL(_ctypes_test.__file__)
test_pointers.py 23 dll = CDLL(_ctypes_test.__file__)
38 dll = CDLL(_ctypes_test.__file__)
73 dll = CDLL(_ctypes_test.__file__)
138 dll = CDLL(_ctypes_test.__file__)
test_callbacks.py 165 dll = CDLL(_ctypes_test.__file__)
188 libc = CDLL(libc_path)
220 dll = CDLL(_ctypes_test.__file__)
236 dll = CDLL(_ctypes_test.__file__)
test_pickling.py 5 dll = CDLL(_ctypes_test.__file__)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_loading.py 26 CDLL(libc_name)
27 CDLL(os.path.basename(libc_name))
28 self.assertRaises(OSError, CDLL, self.unknowndll)
32 cdll.LoadLibrary("libc.so.6")
34 self.assertRaises(OSError, cdll.LoadLibrary, "libc.so.9")
35 self.assertRaises(OSError, cdll.LoadLibrary, self.unknowndll)
41 cdll.LoadLibrary(lib)
42 CDLL(lib)
test_find.py 34 self.gl = CDLL(lib_gl, mode=RTLD_GLOBAL)
36 self.glu = CDLL(lib_glu, RTLD_GLOBAL)
39 self.gle = CDLL(lib_gle)
61 ## # at least some libraries can be loaded as attributes of the cdll
75 ## libm = cdll.libm
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_checkretval.py 16 dll = CDLL(_ctypes_test.__file__)
test_libc.py 6 lib = CDLL(_ctypes_test.__file__)
test_errno.py 15 libc = CDLL(libc_name, use_errno=True)
33 libc = CDLL(libc_name, use_errno=False)
test_values.py 13 ctdll = CDLL(_ctypes_test.__file__)
21 ctdll = CDLL(_ctypes_test.__file__)
test_win32.py 30 IsWindow = cdll.user32.IsWindow
86 dll = CDLL(_ctypes_test.__file__)
test_pointers.py 23 dll = CDLL(_ctypes_test.__file__)
38 dll = CDLL(_ctypes_test.__file__)
73 dll = CDLL(_ctypes_test.__file__)
138 dll = CDLL(_ctypes_test.__file__)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
util.py 262 from ctypes import cdll namespace
264 print cdll.msvcrt
265 print cdll.load("msvcrt")
275 ## print cdll.m
276 ## print cdll.bz2
280 print cdll.LoadLibrary("libm.dylib")
281 print cdll.LoadLibrary("libcrypto.dylib")
282 print cdll.LoadLibrary("libSystem.dylib")
283 print cdll.LoadLibrary("System.framework/System")
285 print cdll.LoadLibrary("libm.so"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/
util.py 262 from ctypes import cdll namespace
264 print cdll.msvcrt
265 print cdll.load("msvcrt")
275 ## print cdll.m
276 ## print cdll.bz2
280 print cdll.LoadLibrary("libm.dylib")
281 print cdll.LoadLibrary("libcrypto.dylib")
282 print cdll.LoadLibrary("libSystem.dylib")
283 print cdll.LoadLibrary("System.framework/System")
285 print cdll.LoadLibrary("libm.so"
    [all...]
  /external/llvm/bindings/python/llvm/
common.py 12 from ctypes import cdll namespace
97 # On Linux, ctypes.cdll.LoadLibrary() respects LD_LIBRARY_PATH
102 # library into a default linker search path. Always Try ctypes.cdll.LoadLibrary()
116 lib = cdll.LoadLibrary(pfx + i + ext)
125 return cdll.LoadLibrary(t)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/test/
runtktests.py 32 from ctypes import cdll, c_int, pointer, Structure namespace
35 app_services = cdll.LoadLibrary(find_library("ApplicationServices"))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/test/
runtktests.py 32 from ctypes import cdll, c_int, pointer, Structure namespace
35 app_services = cdll.LoadLibrary(find_library("ApplicationServices"))

Completed in 296 milliseconds

1 2 3