Searched defs:ctypes (Results 1 - 5 of 5) sorted by relevance

/external/llvm/bindings/python/llvm/
H A Dcommon.py10 from ctypes import POINTER
11 from ctypes import c_void_p
12 from ctypes import cdll
14 import ctypes.util namespace
57 """ctypes function that converts this object to a function parameter."""
94 result = ctypes.util.find_library(lib)
/external/webkit/Tools/Scripts/webkitpy/common/system/
H A Dexecutive.py36 import ctypes namespace
231 class PROCESSENTRY32(ctypes.Structure):
232 _fields_ = [("dwSize", ctypes.c_ulong),
233 ("cntUsage", ctypes.c_ulong),
234 ("th32ProcessID", ctypes.c_ulong),
235 ("th32DefaultHeapID", ctypes.c_ulong),
236 ("th32ModuleID", ctypes.c_ulong),
237 ("cntThreads", ctypes.c_ulong),
238 ("th32ParentProcessID", ctypes.c_ulong),
239 ("pcPriClassBase", ctypes
[all...]
/external/v8/tools/
H A Dll_prof.py32 import ctypes namespace
335 "ia32": ctypes.c_uint32,
336 "arm": ctypes.c_uint32,
337 "mips": ctypes.c_uint32,
338 "x64": ctypes.c_uint64
362 ("name_size", ctypes.c_int32),
364 ("code_size", ctypes.c_int32)])
375 ("position", ctypes.c_int32)])
388 self.log_pos += ctypes.sizeof(event)
418 self.log_pos += ctypes
[all...]
H A Dgrokdump.py30 import ctypes namespace
76 self.size = ctypes.sizeof(self.ctype)
99 class Raw(ctypes.Structure):
113 ("signature", ctypes.c_uint32),
114 ("version", ctypes.c_uint32),
115 ("stream_count", ctypes.c_uint32),
116 ("stream_directories_rva", ctypes.c_uint32),
117 ("checksum", ctypes.c_uint32),
118 ("time_date_stampt", ctypes.c_uint32),
119 ("flags", ctypes
[all...]
H A Dtest.py464 import ctypes namespace
465 prev_error_mode = ctypes.windll.kernel32.SetErrorMode(mode)

Completed in 231 milliseconds