HomeSort by relevance Sort by last modified time
    Searched refs:ctypes (Results 51 - 75 of 443) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/vulkan-validation-layers/
vk-layer-introspect.py 18 import ctypes
26 VKAPI_DLL = ctypes.windll
27 VKAPI_FUNCTYPE = ctypes.WINFUNCTYPE
29 VKAPI_DLL = ctypes.cdll
30 VKAPI_FUNCTYPE = ctypes.CFUNCTYPE
34 VkInstance = ctypes.c_void_p
35 VkPhysicalDevice = ctypes.c_void_p
36 VkDevice = ctypes.c_void_p
37 VkResult = ctypes.c_int
40 class VkLayerProperties(ctypes.Structure)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
win_console_handler.py 11 from ctypes import wintypes, WINFUNCTYPE
13 import ctypes
33 SetConsoleCtrlHandler = ctypes.windll.kernel32.SetConsoleCtrlHandler
  /external/python/cpython2/Lib/test/
win_console_handler.py 11 from ctypes import wintypes, WINFUNCTYPE
13 import ctypes
33 SetConsoleCtrlHandler = ctypes.windll.kernel32.SetConsoleCtrlHandler
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
win_console_handler.py 11 from ctypes import wintypes, WINFUNCTYPE
13 import ctypes
33 SetConsoleCtrlHandler = ctypes.windll.kernel32.SetConsoleCtrlHandler
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
win_console_handler.py 11 from ctypes import wintypes, WINFUNCTYPE
13 import ctypes
33 SetConsoleCtrlHandler = ctypes.windll.kernel32.SetConsoleCtrlHandler
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
win_console_handler.py 11 from ctypes import wintypes, WINFUNCTYPE
13 import ctypes
33 SetConsoleCtrlHandler = ctypes.windll.kernel32.SetConsoleCtrlHandler
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
win_console_handler.py 11 from ctypes import wintypes, WINFUNCTYPE
13 import ctypes
33 SetConsoleCtrlHandler = ctypes.windll.kernel32.SetConsoleCtrlHandler
  /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 c_byte
14 from ctypes import c_char_p
15 from ctypes import c_int
16 from ctypes import c_size_t
17 from ctypes import c_ubyte
18 from ctypes import c_uint64
19 from ctypes import c_void_
    [all...]
  /kernel/tests/net/test/
csocket.py 17 import ctypes
18 import ctypes.util
74 libc = ctypes.CDLL(ctypes.util.find_library("c"), use_errno=True)
89 return ctypes.cast(s.CPointer(), ctypes.c_void_p)
98 errno = ctypes.get_errno()
220 # Create ctypes buffers and pointers from our structures. We need to hang on
236 databuf = ctypes.create_string_buffer(data)
237 iov = Iovec((ctypes.addressof(databuf), len(data))
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/leakers/
test_ctypes.py 2 # Taken from Lib/ctypes/test/test_keeprefs.py, PointerToStructure.test().
5 from ctypes import Structure, c_int, POINTER
  /external/python/cpython2/Lib/test/leakers/
test_ctypes.py 2 # Taken from Lib/ctypes/test/test_keeprefs.py, PointerToStructure.test().
4 from ctypes import Structure, c_int, POINTER
  /external/v8/tools/
grokdump.py 35 import ctypes
86 self.size = ctypes.sizeof(self.ctype)
109 class Raw(ctypes.Structure):
145 byte = ctypes.c_uint8.from_buffer(reader.minidump, slot + i).value
185 ("signature", ctypes.c_uint32),
186 ("version", ctypes.c_uint32),
187 ("stream_count", ctypes.c_uint32),
188 ("stream_directories_rva", ctypes.c_uint32),
189 ("checksum", ctypes.c_uint32),
190 ("time_date_stampt", ctypes.c_uint32)
    [all...]
  /external/python/cpython2/Lib/lib-tk/
FixTk.py 15 import ctypes
16 ctypes.windll.kernel32.GetFinalPathNameByHandleW
24 hdir = ctypes.windll.kernel32.\
33 buf = ctypes.create_unicode_buffer(u"", 32768)
34 res = ctypes.windll.kernel32.\
37 ctypes.windll.kernel32.CloseHandle(hdir)
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
FixTk.py 15 import ctypes
16 ctypes.windll.kernel32.GetFinalPathNameByHandleW
24 hdir = ctypes.windll.kernel32.\
33 buf = ctypes.create_unicode_buffer(u"", 32768)
34 res = ctypes.windll.kernel32.\
37 ctypes.windll.kernel32.CloseHandle(hdir)
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
FixTk.py 15 import ctypes
16 ctypes.windll.kernel32.GetFinalPathNameByHandleW
24 hdir = ctypes.windll.kernel32.\
33 buf = ctypes.create_unicode_buffer(u"", 32768)
34 res = ctypes.windll.kernel32.\
37 ctypes.windll.kernel32.CloseHandle(hdir)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
FixTk.py 15 import ctypes
16 ctypes.windll.kernel32.GetFinalPathNameByHandleW
24 hdir = ctypes.windll.kernel32.\
33 buf = ctypes.create_unicode_buffer(u"", 32768)
34 res = ctypes.windll.kernel32.\
37 ctypes.windll.kernel32.CloseHandle(hdir)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
FixTk.py 15 import ctypes
16 ctypes.windll.kernel32.GetFinalPathNameByHandleW
24 hdir = ctypes.windll.kernel32.\
33 buf = ctypes.create_unicode_buffer(u"", 32768)
34 res = ctypes.windll.kernel32.\
37 ctypes.windll.kernel32.CloseHandle(hdir)
  /external/python/cpython2/Lib/ctypes/test/
test_checkretval.py 3 from ctypes import *
4 from ctypes.test import need_symbol
test_incomplete.py 2 from ctypes import *
36 from ctypes import _pointer_type_cache
test_delattr.py 2 from ctypes import *
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_incomplete.py 2 from ctypes import *
36 from ctypes import _pointer_type_cache
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_incomplete.py 2 from ctypes import *
36 from ctypes import _pointer_type_cache
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_incomplete.py 2 from ctypes import *
36 from ctypes import _pointer_type_cache
  /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
  /external/libmojo/third_party/jinja2/
debug.py 273 import ctypes
277 if hasattr(ctypes.pythonapi, 'Py_InitModule4_64'):
278 _Py_ssize_t = ctypes.c_int64
280 _Py_ssize_t = ctypes.c_int
283 class _PyObject(ctypes.Structure):
287 ('ob_type', ctypes.POINTER(_PyObject))
292 class _PyObject(ctypes.Structure):
295 ('_ob_next', ctypes.POINTER(_PyObject)),
296 ('_ob_prev', ctypes.POINTER(_PyObject)),
298 ('ob_type', ctypes.POINTER(_PyObject)
    [all...]

Completed in 765 milliseconds

1 23 4 5 6 7 8 91011>>