Lines Matching refs:ConnectionObject
39 ConnectionObject *self; in connection_new()
61 self = PyObject_New(ConnectionObject, type); in connection_new()
79 connection_dealloc(ConnectionObject* self) in connection_dealloc()
97 connection_sendbytes(ConnectionObject *self, PyObject *args) in connection_sendbytes()
145 connection_recvbytes(ConnectionObject *self, PyObject *args) in connection_recvbytes()
189 connection_recvbytes_into(ConnectionObject *self, PyObject *args) in connection_recvbytes_into()
260 connection_send_obj(ConnectionObject *self, PyObject *obj) in connection_send_obj()
293 connection_recv_obj(ConnectionObject *self) in connection_recv_obj()
337 connection_poll(ConnectionObject *self, PyObject *args) in connection_poll()
375 connection_fileno(ConnectionObject* self) in connection_fileno()
385 connection_close(ConnectionObject *self) in connection_close()
398 connection_repr(ConnectionObject *self) in connection_repr()
413 connection_closed(ConnectionObject *self, void *closure) in connection_closed()
419 connection_readable(ConnectionObject *self, void *closure) in connection_readable()
425 connection_writable(ConnectionObject *self, void *closure) in connection_writable()
480 /* tp_basicsize */ sizeof(ConnectionObject),
503 /* tp_weaklistoffset */ offsetof(ConnectionObject, weakreflist),