Home | History | Annotate | Download | only in _multiprocessing

Lines Matching refs:ConnectionObject

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