HomeSort by relevance Sort by last modified time
    Searched refs:ctypes (Results 1 - 11 of 11) sorted by null

  /external/v8/tools/
grokdump.py 30 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.c_uint64
    [all...]
ll_prof.py 32 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.sizeof(event
    [all...]
test.py 464 import ctypes namespace
465 prev_error_mode = ctypes.windll.kernel32.SetErrorMode(mode)
    [all...]
  /external/llvm/bindings/python/llvm/
disassembler.py 10 from ctypes import CFUNCTYPE
11 from ctypes import POINTER
12 from ctypes import addressof
13 from ctypes import byref
14 from ctypes import c_byte
15 from ctypes import c_char_p
16 from ctypes import c_int
17 from ctypes import c_size_t
18 from ctypes import c_ubyte
19 from ctypes import c_uint6
    [all...]
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
object.py 80 from ctypes import c_char_p
81 from ctypes import c_uint64
  /external/webkit/Tools/Scripts/webkitpy/common/system/
executive.py 36 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.c_ulong)
    [all...]
  /external/webkit/Tools/Scripts/
run-qtwebkit-tests 138 import ctypes
140 handle = ctypes.windll.kernel32.OpenProcess(PROCESS_TERMINATE, False, tst.pid)
141 ctypes.windll.kernel32.TerminateProcess(handle, -1)
142 ctypes.windll.kernel32.CloseHandle(handle)
  /external/sonivox/jet_tools/JetCreator/
eas.py 7 from ctypes import *
    [all...]
  /external/clang/bindings/python/clang/
cindex.py 60 # o cleanup ctypes wrapping, would be nice to separate the ctypes details more
65 from ctypes import *
70 # ctypes doesn't implicitly convert c_void_p to the appropriate wrapper
241 # FIXME: Eliminate this and make normal constructor? Requires hiding ctypes
    [all...]

Completed in 531 milliseconds