Home | History | Annotate | Download | only in ctypes

Lines Matching refs:c_void_p

238         return "%s(%s)" % (self.__class__.__name__, c_void_p.from_buffer(self).value)
241 class c_void_p(_SimpleCData):
243 c_voidp = c_void_p # backwards compatibility (to a bug)
244 _check_size(c_void_p)
254 return "%s(%s)" % (self.__class__.__name__, c_void_p.from_buffer(self).value)
268 _pointer_type_cache[None] = c_void_p
461 if sizeof(c_uint) == sizeof(c_void_p):
464 elif sizeof(c_ulong) == sizeof(c_void_p):
467 elif sizeof(c_ulonglong) == sizeof(c_void_p):
476 memmove = CFUNCTYPE(c_void_p, c_void_p, c_void_p, c_size_t)(_memmove_addr)
479 memset = CFUNCTYPE(c_void_p, c_void_p, c_int, c_size_t)(_memset_addr)
488 _cast = PYFUNCTYPE(py_object, c_void_p, py_object, py_object)(_cast_addr)
492 _string_at = PYFUNCTYPE(py_object, c_void_p, c_int)(_string_at_addr)
504 _wstring_at = PYFUNCTYPE(py_object, c_void_p, c_int)(_wstring_at_addr)