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

12 3

  /external/bcc/src/python/bcc/
perf.py 67 libc = ct.CDLL('libc.so.6', use_errno=True)
  /external/python/cpython2/Lib/ctypes/test/
test_pickling.py 5 dll = CDLL(_ctypes_test.__file__)
test_refcounts.py 9 dll = ctypes.CDLL(_ctypes_test.__file__)
test_unicode.py 11 dll = ctypes.CDLL(_ctypes_test.__file__)
82 cls.func = ctypes.CDLL(_ctypes_test.__file__)._testfunc_p_p
test_funcptr.py 11 lib = CDLL(_ctypes_test.__file__)
test_win32.py 33 IsWindow = cdll.user32.IsWindow
91 dll = CDLL(_ctypes_test.__file__)
test_parameters.py 146 from ctypes import CDLL, c_void_p, ArgumentError
148 func = CDLL(_ctypes_test.__file__)._testfunc_p_p
test_prototypes.py 26 testdll = CDLL(_ctypes_test.__file__)
test_as_parameter.py 6 dll = CDLL(_ctypes_test.__file__)
test_bitfields.py 28 func = CDLL(_ctypes_test.__file__).unpack_bitfields
  /external/python/cpython3/Lib/ctypes/test/
test_pickling.py 5 dll = CDLL(_ctypes_test.__file__)
test_refcounts.py 10 dll = ctypes.CDLL(_ctypes_test.__file__)
test_stringptr.py 7 lib = CDLL(_ctypes_test.__file__)
test_win32.py 32 IsWindow = cdll.user32.IsWindow
60 dll = CDLL(_ctypes_test.__file__)
134 dll = CDLL(_ctypes_test.__file__)
test_funcptr.py 11 lib = CDLL(_ctypes_test.__file__)
test_parameters.py 141 from ctypes import CDLL, c_void_p, ArgumentError
143 func = CDLL(_ctypes_test.__file__)._testfunc_p_p
test_structures.py 411 dll = CDLL(_ctypes_test.__file__)
430 dll = CDLL(_ctypes_test.__file__)
test_as_parameter.py 6 dll = CDLL(_ctypes_test.__file__)
test_prototypes.py 26 testdll = CDLL(_ctypes_test.__file__)
  /external/python/cpython2/Lib/ctypes/
__init__.py 329 class CDLL(object):
389 class PyDLL(CDLL):
398 class WinDLL(CDLL):
420 class OleDLL(CDLL):
446 cdll = LibraryLoader(CDLL) variable
  /external/python/cpython3/Lib/ctypes/
__init__.py 311 class CDLL(object):
379 class PyDLL(CDLL):
388 class WinDLL(CDLL):
410 class OleDLL(CDLL):
436 cdll = LibraryLoader(CDLL) variable
util.py 318 from ctypes import cdll
320 print(cdll.msvcrt)
321 print(cdll.load("msvcrt"))
332 print(cdll.LoadLibrary("libm.dylib"))
333 print(cdll.LoadLibrary("libcrypto.dylib"))
334 print(cdll.LoadLibrary("libSystem.dylib"))
335 print(cdll.LoadLibrary("System.framework/System"))
338 from ctypes import CDLL
340 print(f"Using CDLL(name, os.RTLD_MEMBER): {CDLL('libc.a(shr.o)', os.RTLD_MEMBER)}"
    [all...]
  /external/autotest/client/site_tests/kernel_CryptoAPI/
kernel_CryptoAPI.py 94 libc = ctypes.CDLL("libc.so.6", use_errno=True)
  /external/scapy/scapy/modules/
winpcapy.py 32 _lib=CDLL("wpcap.dll")
38 _lib=CDLL(_lib_name)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
uuid.py 404 lib = ctypes.CDLL(ctypes.util.find_library(libname))

Completed in 668 milliseconds

12 3