Searched refs:_CFuncPtr (Results 1 – 4 of 4) sorted by relevance
/third_party/python/Lib/ctypes/test/ |
D | test_frombuffer.py | 124 from ctypes import _Pointer, _SimpleCData, _CFuncPtr 129 self.assertRaises(TypeError, _CFuncPtr.from_buffer, bytearray(10)) 136 self.assertRaises(TypeError, _CFuncPtr.from_buffer_copy, b"123")
|
D | test_funcptr.py | 127 from ctypes import _CFuncPtr 129 self.assertRaises(TypeError, _CFuncPtr, 13, "name", 42, "iid")
|
D | test_parameters.py | 175 _SimpleCData, _CFuncPtr) 180 self.assertRaises(TypeError, _CFuncPtr.from_param, 42)
|
/third_party/python/Lib/ctypes/ |
D | __init__.py | 10 from _ctypes import CFuncPtr as _CFuncPtr unknown 102 class CFunctionType(_CFuncPtr): 126 class WinFunctionType(_CFuncPtr): 368 class _FuncPtr(_CFuncPtr): 502 class CFunctionType(_CFuncPtr):
|