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

1 23 4 5 6 7

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_repr.py 1 from ctypes import *
test_sizes.py 3 from ctypes import *
test_values.py 6 from ctypes import *
75 from ctypes import _pointer_type_cache
test_loading.py 1 from ctypes import *
4 from ctypes.util import find_library
5 from ctypes.test import is_resource_enabled
test_errno.py 2 from ctypes import *
3 from ctypes.util import find_library
test_python_api.py 1 from ctypes import *
3 from ctypes.test import is_resource_enabled
6 # This section should be moved into ctypes\__init__.py, when it's ready.
75 PyOS_snprintf(buf, sizeof(buf), "Hello from %s", "ctypes")
76 self.assertEqual(buf.value, "Hello from ctypes")
78 PyOS_snprintf(buf, sizeof(buf), "Hello from %s", "ctypes", 1, 2, 3)
79 self.assertEqual(buf.value, "Hello from ctypes")
test_anon.py 2 from ctypes import *
test_array_in_pointer.py 2 from ctypes import *
test_init.py 1 from ctypes import *
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_checkretval.py 3 from ctypes import *
test_macholib.py 36 from ctypes.macholib.dyld import dyld_find
test_repr.py 1 from ctypes import *
test_sizes.py 3 from ctypes import *
test_values.py 6 from ctypes import *
75 from ctypes import _pointer_type_cache
test_loading.py 1 from ctypes import *
4 from ctypes.util import find_library
5 from ctypes.test import is_resource_enabled
test_errno.py 2 from ctypes import *
3 from ctypes.util import find_library
test_python_api.py 1 from ctypes import *
3 from ctypes.test import is_resource_enabled
6 # This section should be moved into ctypes\__init__.py, when it's ready.
75 PyOS_snprintf(buf, sizeof(buf), "Hello from %s", "ctypes")
76 self.assertEqual(buf.value, "Hello from ctypes")
78 PyOS_snprintf(buf, sizeof(buf), "Hello from %s", "ctypes", 1, 2, 3)
79 self.assertEqual(buf.value, "Hello from ctypes")
  /external/chromium_org/tools/win/split_link/
split_link.py 11 import ctypes namespace
46 size = ctypes.c_int()
47 ptr = ctypes.windll.shell32.CommandLineToArgvW(
48 ctypes.create_unicode_buffer(' '.join(rsp_expanded)),
49 ctypes.byref(size))
50 ref = ctypes.c_wchar_p * size.value
54 ctypes.windll.kernel32.LocalFree(ptr)
223 UnDecorateSymbolName = ctypes.windll.dbghelp.UnDecorateSymbolName
225 output_string = ctypes.create_string_buffer(buffer_size)
227 export, ctypes.byref(output_string), buffer_size, 0)
    [all...]
  /external/v8/tools/
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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_os.py 314 import ctypes namespace
315 kernel32 = ctypes.windll.kernel32
316 buf = ctypes.create_string_buffer("", 100)
742 import ctypes namespace
743 from ctypes import wintypes
750 PeekNamedPipe = ctypes.windll.kernel32.PeekNamedPipe
753 ctypes.POINTER(ctypes.c_char), # stdout buf
755 ctypes.POINTER(wintypes.DWORD), # bytes read
756 ctypes.POINTER(wintypes.DWORD), # bytes avai
829 import ctypes namespace
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_os.py 314 import ctypes namespace
315 kernel32 = ctypes.windll.kernel32
316 buf = ctypes.create_string_buffer("", 100)
742 import ctypes namespace
743 from ctypes import wintypes
750 PeekNamedPipe = ctypes.windll.kernel32.PeekNamedPipe
753 ctypes.POINTER(ctypes.c_char), # stdout buf
755 ctypes.POINTER(wintypes.DWORD), # bytes read
756 ctypes.POINTER(wintypes.DWORD), # bytes avai
829 import ctypes namespace
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/test/
runtktests.py 32 from ctypes import cdll, c_int, pointer, Structure
33 from ctypes.util import find_library
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/test/
runtktests.py 32 from ctypes import cdll, c_int, pointer, Structure
33 from ctypes.util import find_library
  /external/chromium_org/v8/tools/
ll_prof.py 32 import ctypes namespace
351 "ia32": ctypes.c_uint32,
352 "arm": ctypes.c_uint32,
353 "mips": ctypes.c_uint32,
354 "x64": ctypes.c_uint64
378 ("name_size", ctypes.c_int32),
380 ("code_size", ctypes.c_int32)])
391 ("position", ctypes.c_int32)])
404 self.log_pos += ctypes.sizeof(event)
434 self.log_pos += ctypes.sizeof(event
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
_endian.py 5 from ctypes import *

Completed in 648 milliseconds

1 23 4 5 6 7