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

<<1112131415161718

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_stringptr.py 2 from ctypes import *
test_varsize_struct.py 1 from ctypes import *
test_callbacks.py 2 from ctypes import *
184 from ctypes.util import find_library
205 from ctypes.wintypes import BOOL, HWND, LPARAM
  /kernel/tests/net/test/
cstruct.py 70 import ctypes
259 buf = ctypes.create_string_buffer(self.Pack())
262 return ctypes.addressof(self._buffer)
  /external/llvm/bindings/python/llvm/
object.py 80 from ctypes import c_char_p
81 from ctypes import c_char
82 from ctypes import POINTER
83 from ctypes import c_uint64
84 from ctypes import string_at
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_threading.py 163 # exposed at the Python level. This test relies on ctypes to get at it.
166 import ctypes
169 print "test_PyThreadState_SetAsyncExc can't import ctypes"
172 set_async_exc = ctypes.pythonapi.PyThreadState_SetAsyncExc
177 exception = ctypes.py_object(AsyncExc)
183 result = set_async_exc(ctypes.c_long(tid), exception)
229 result = set_async_exc(ctypes.c_long(-1), exception)
242 result = set_async_exc(ctypes.c_long(t.id), exception)
274 import ctypes
277 print("test_finalize_with_runnning_thread can't import ctypes")
    [all...]
  /external/python/cpython2/Lib/test/
test_threading.py 165 # exposed at the Python level. This test relies on ctypes to get at it.
168 import ctypes
170 self.skipTest('requires ctypes')
172 set_async_exc = ctypes.pythonapi.PyThreadState_SetAsyncExc
177 exception = ctypes.py_object(AsyncExc)
183 result = set_async_exc(ctypes.c_long(tid), exception)
229 result = set_async_exc(ctypes.c_long(-1), exception)
242 result = set_async_exc(ctypes.c_long(t.id), exception)
274 import ctypes
276 self.skipTest('requires ctypes')
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_threading.py 165 # exposed at the Python level. This test relies on ctypes to get at it.
168 import ctypes
171 print "test_PyThreadState_SetAsyncExc can't import ctypes"
174 set_async_exc = ctypes.pythonapi.PyThreadState_SetAsyncExc
179 exception = ctypes.py_object(AsyncExc)
185 result = set_async_exc(ctypes.c_long(tid), exception)
231 result = set_async_exc(ctypes.c_long(-1), exception)
244 result = set_async_exc(ctypes.c_long(t.id), exception)
276 import ctypes
279 print("test_finalize_with_runnning_thread can't import ctypes")
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_threading.py 165 # exposed at the Python level. This test relies on ctypes to get at it.
168 import ctypes
171 print "test_PyThreadState_SetAsyncExc can't import ctypes"
174 set_async_exc = ctypes.pythonapi.PyThreadState_SetAsyncExc
179 exception = ctypes.py_object(AsyncExc)
185 result = set_async_exc(ctypes.c_long(tid), exception)
231 result = set_async_exc(ctypes.c_long(-1), exception)
244 result = set_async_exc(ctypes.c_long(t.id), exception)
276 import ctypes
279 print("test_finalize_with_runnning_thread can't import ctypes")
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_threading.py 165 # exposed at the Python level. This test relies on ctypes to get at it.
168 import ctypes
171 print "test_PyThreadState_SetAsyncExc can't import ctypes"
174 set_async_exc = ctypes.pythonapi.PyThreadState_SetAsyncExc
179 exception = ctypes.py_object(AsyncExc)
185 result = set_async_exc(ctypes.c_long(tid), exception)
231 result = set_async_exc(ctypes.c_long(-1), exception)
244 result = set_async_exc(ctypes.c_long(t.id), exception)
276 import ctypes
279 print("test_finalize_with_runnning_thread can't import ctypes")
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_threading.py 165 # exposed at the Python level. This test relies on ctypes to get at it.
168 import ctypes
171 print "test_PyThreadState_SetAsyncExc can't import ctypes"
174 set_async_exc = ctypes.pythonapi.PyThreadState_SetAsyncExc
179 exception = ctypes.py_object(AsyncExc)
185 result = set_async_exc(ctypes.c_long(tid), exception)
231 result = set_async_exc(ctypes.c_long(-1), exception)
244 result = set_async_exc(ctypes.c_long(t.id), exception)
276 import ctypes
279 print("test_finalize_with_runnning_thread can't import ctypes")
    [all...]
  /external/pcre/dist2/src/
pcre2_auto_possess.c 921 if (chr < 256 && (cb->ctypes[chr] & ctype_digit) != 0) return FALSE;
925 if (chr > 255 || (cb->ctypes[chr] & ctype_digit) == 0) return FALSE;
929 if (chr < 256 && (cb->ctypes[chr] & ctype_space) != 0) return FALSE;
933 if (chr > 255 || (cb->ctypes[chr] & ctype_space) == 0) return FALSE;
937 if (chr < 255 && (cb->ctypes[chr] & ctype_word) != 0) return FALSE;
941 if (chr > 255 || (cb->ctypes[chr] & ctype_word) == 0) return FALSE;
    [all...]
  /external/python/cpython2/Lib/ctypes/test/
test_as_parameter.py 2 from ctypes import *
3 from ctypes.test import need_symbol
190 from ctypes import c_int
test_callbacks.py 3 from ctypes import *
4 from ctypes.test import need_symbol
186 from ctypes.util import find_library
203 from ctypes.wintypes import BOOL, HWND, LPARAM
test_internals.py 3 from ctypes import *
9 ctypes' types are container types.
test_pickling.py 3 from ctypes import *
46 # ctypes instances are identical when the instance __dict__
53 # ctypes objects that are pointers or contain pointers are
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_callbacks.py 2 from ctypes import *
184 from ctypes.util import find_library
205 from ctypes.wintypes import BOOL, HWND, LPARAM
test_bitfields.py 1 from ctypes import *
5 import ctypes
243 @unittest.skipUnless(hasattr(ctypes, "c_uint32"), "c_int32 is required")
253 @unittest.skipUnless(hasattr(ctypes, "c_uint64"), "c_int64 is required")
test_buffers.py 1 from ctypes import *
test_internals.py 3 from ctypes import *
9 ctypes' types are container types.
test_memfunctions.py 3 from ctypes import *
test_pickling.py 3 from ctypes import *
46 # ctypes instances are identical when the instance __dict__
53 # ctypes objects that are pointers or contain pointers are
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_callbacks.py 2 from ctypes import *
184 from ctypes.util import find_library
205 from ctypes.wintypes import BOOL, HWND, LPARAM
test_bitfields.py 1 from ctypes import *
5 import ctypes
243 @unittest.skipUnless(hasattr(ctypes, "c_uint32"), "c_int32 is required")
253 @unittest.skipUnless(hasattr(ctypes, "c_uint64"), "c_int64 is required")
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_callbacks.py 2 from ctypes import *
184 from ctypes.util import find_library
205 from ctypes.wintypes import BOOL, HWND, LPARAM

Completed in 1047 milliseconds

<<1112131415161718