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

12 3 4 5 6 7

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_incomplete.py 2 from ctypes import *
36 from ctypes import _pointer_type_cache
test_delattr.py 2 from ctypes import *
test_find.py 3 from ctypes import *
4 from ctypes.util import find_library
5 from ctypes.test import is_resource_enabled
62 ## # object, since ctypes now tries loading the lib again
test_parameters.py 6 import ctypes namespace
24 from ctypes import c_void_p, c_char_p
25 # ctypes 0.9.5 and before did overwrite from_param in SimpleType_new
40 from ctypes import c_wchar_p
53 from ctypes import c_char_p, byref
72 from ctypes import byref
74 from ctypes import c_wchar_p
91 from ctypes import c_short, c_uint, c_int, c_long, POINTER, pointer
110 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byref
122 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byre
    [all...]
test_win32.py 3 from ctypes import *
4 from ctypes.test import is_resource_enabled
52 from ctypes import wintypes
56 from ctypes import wintypes
test_wintypes.py 7 from ctypes import *
8 from ctypes import wintypes
__init__.py 85 import ctypes namespace
86 ptc = ctypes._pointer_type_cache.copy()
87 cfc = ctypes._c_functype_cache.copy()
88 wfc = ctypes._win_functype_cache.copy()
91 # caches that ctypes has.
93 ctypes._pointer_type_cache = ptc.copy()
94 ctypes._c_functype_cache = cfc.copy()
95 ctypes._win_functype_cache = wfc.copy()
  /external/chromium_org/third_party/jinja2/
debug.py 272 import ctypes namespace
276 if hasattr(ctypes.pythonapi, 'Py_InitModule4_64'):
277 _Py_ssize_t = ctypes.c_int64
279 _Py_ssize_t = ctypes.c_int
282 class _PyObject(ctypes.Structure):
286 ('ob_type', ctypes.POINTER(_PyObject))
291 class _PyObject(ctypes.Structure):
294 ('_ob_next', ctypes.POINTER(_PyObject)),
295 ('_ob_prev', ctypes.POINTER(_PyObject)),
297 ('ob_type', ctypes.POINTER(_PyObject)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_delattr.py 2 from ctypes import *
test_find.py 3 from ctypes import *
4 from ctypes.util import find_library
5 from ctypes.test import is_resource_enabled
62 ## # object, since ctypes now tries loading the lib again
test_parameters.py 6 import ctypes namespace
24 from ctypes import c_void_p, c_char_p
25 # ctypes 0.9.5 and before did overwrite from_param in SimpleType_new
40 from ctypes import c_wchar_p
53 from ctypes import c_char_p, byref
72 from ctypes import byref
74 from ctypes import c_wchar_p
91 from ctypes import c_short, c_uint, c_int, c_long, POINTER, pointer
110 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byref
122 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byre
    [all...]
test_win32.py 3 from ctypes import *
4 from ctypes.test import is_resource_enabled
52 from ctypes import wintypes
56 from ctypes import wintypes
test_wintypes.py 7 from ctypes import *
8 from ctypes import wintypes
__init__.py 85 import ctypes namespace
86 ptc = ctypes._pointer_type_cache.copy()
87 cfc = ctypes._c_functype_cache.copy()
88 wfc = ctypes._win_functype_cache.copy()
91 # caches that ctypes has.
93 ctypes._pointer_type_cache = ptc.copy()
94 ctypes._c_functype_cache = cfc.copy()
95 ctypes._win_functype_cache = wfc.copy()
test_checkretval.py 3 from ctypes import *
test_macholib.py 36 from ctypes.macholib.dyld import dyld_find
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
executive.py 216 # importing ctypes at the top-level seems to cause weird crashes at
219 import ctypes namespace
221 class PROCESSENTRY32(ctypes.Structure):
222 _fields_ = [("dwSize", ctypes.c_ulong),
223 ("cntUsage", ctypes.c_ulong),
224 ("th32ProcessID", ctypes.c_ulong),
225 ("th32DefaultHeapID", ctypes.POINTER(ctypes.c_ulong)),
226 ("th32ModuleID", ctypes.c_ulong),
227 ("cntThreads", ctypes.c_ulong)
    [all...]
  /external/llvm/bindings/python/llvm/
common.py 10 from ctypes import POINTER
11 from ctypes import c_void_p
12 from ctypes import cdll
14 import ctypes.util namespace
61 """ctypes function that converts this object to a function parameter."""
97 # On Linux, ctypes.cdll.LoadLibrary() respects LD_LIBRARY_PATH
98 # while ctypes.util.find_library() doesn't.
99 # See http://docs.python.org/2/library/ctypes.html#finding-shared-libraries
102 # library into a default linker search path. Always Try ctypes.cdll.LoadLibrary()
103 # with all possible library names first, then try ctypes.util.find_library()
    [all...]
core.py 16 from ctypes import POINTER
17 from ctypes import byref
18 from ctypes import c_char_p
  /external/chromium_org/chrome/tools/build/win/
resedit.py 10 import ctypes namespace
11 import ctypes.wintypes namespace
28 UpdateResource = ctypes.windll.kernel32.UpdateResourceW
30 ctypes.wintypes.HANDLE, # HANDLE hUpdate
31 ctypes.c_wchar_p, # LPCTSTR lpType
32 ctypes.c_wchar_p, # LPCTSTR lpName
33 ctypes.c_short, # WORD wLanguage
34 ctypes.c_void_p, # LPVOID lpData
35 ctypes.c_ulong, # DWORD cbData
37 UpdateResource.restype = ctypes.c_shor
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
uuid.py 345 import ctypes namespace
346 buffer = ctypes.create_string_buffer(300)
347 ctypes.windll.kernel32.GetSystemDirectoryA(buffer, 300)
393 # Thanks to Thomas Heller for ctypes and for his help with its use here.
395 # If ctypes is available, use it to find system routines for UUID generation.
398 import ctypes, ctypes.util namespace
404 lib = ctypes.CDLL(ctypes.util.find_library(libname))
434 lib = ctypes.windll.rpcrt
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
uuid.py 345 import ctypes namespace
346 buffer = ctypes.create_string_buffer(300)
347 ctypes.windll.kernel32.GetSystemDirectoryA(buffer, 300)
393 # Thanks to Thomas Heller for ctypes and for his help with its use here.
395 # If ctypes is available, use it to find system routines for UUID generation.
398 import ctypes, ctypes.util namespace
404 lib = ctypes.CDLL(ctypes.util.find_library(libname))
434 lib = ctypes.windll.rpcrt
    [all...]
  /external/chromium_org/chrome/test/functional/media/
audio_tools.py 17 import ctypes namespace
67 ctypes.windll.kernel32.Wow64DisableWow64FsRedirection(
68 ctypes.byref(ctypes.c_long()))
  /external/chromium_org/third_party/mesa/src/src/gallium/tools/trace/
format.py 135 import ctypes namespace
136 self.handle = ctypes.windll.kernel32.GetStdHandle(nStdHandle)
142 import ctypes namespace
143 ctypes.windll.kernel32.SetConsoleTextAttribute(self.handle, attr)
  /external/mesa3d/src/gallium/tools/trace/
format.py 135 import ctypes namespace
136 self.handle = ctypes.windll.kernel32.GetStdHandle(nStdHandle)
142 import ctypes namespace
143 ctypes.windll.kernel32.SetConsoleTextAttribute(self.handle, attr)

Completed in 1091 milliseconds

12 3 4 5 6 7