Lines Matching refs:self
1456 channelid *self = PyObject_New(channelid, cls);
1457 if (self == NULL) {
1460 self->id = cid;
1461 self->end = end;
1462 self->resolve = resolve;
1463 self->channels = channels;
1470 Py_DECREF((PyObject *)self);
1475 return self;
1526 channelid_repr(PyObject *self)
1528 PyTypeObject *type = Py_TYPE(self);
1531 channelid *cid = (channelid *)self;
1546 channelid_str(PyObject *self)
1548 channelid *cid = (channelid *)self;
1553 channelid_int(PyObject *self)
1555 channelid *cid = (channelid *)self;
1600 channelid_hash(PyObject *self)
1602 channelid *cid = (channelid *)self;
1613 channelid_richcompare(PyObject *self, PyObject *other, int op)
1619 if (!PyObject_TypeCheck(self, &ChannelIDtype)) {
1623 channelid *cid = (channelid *)self;
1733 channelid_end(PyObject *self, void *end)
1736 channelid *cid = (channelid *)self;
1738 return (PyObject *)newchannelid(Py_TYPE(self), cid->id, *(int *)end,
1994 interp_create(PyObject *self, PyObject *args, PyObject *kwds)
2036 interp_destroy(PyObject *self, PyObject *args, PyObject *kwds)
2090 interp_list_all(PyObject *self, PyObject *Py_UNUSED(ignored))
2128 interp_get_current(PyObject *self, PyObject *Py_UNUSED(ignored))
2144 interp_get_main(PyObject *self, PyObject *Py_UNUSED(ignored))
2158 interp_run_string(PyObject *self, PyObject *args, PyObject *kwds)
2203 object_is_shareable(PyObject *self, PyObject *args, PyObject *kwds)
2227 interp_is_running(PyObject *self, PyObject *args, PyObject *kwds)
2256 channel_create(PyObject *self, PyObject *Py_UNUSED(ignored))
2280 channel_destroy(PyObject *self, PyObject *args, PyObject *kwds)
2302 channel_list_all(PyObject *self, PyObject *Py_UNUSED(ignored))
2339 channel_list_interpreters(PyObject *self, PyObject *args, PyObject *kwds)
2401 channel_send(PyObject *self, PyObject *args, PyObject *kwds)
2423 channel_recv(PyObject *self, PyObject *args, PyObject *kwds)
2458 channel_close(PyObject *self, PyObject *args, PyObject *kwds)
2505 channel_release(PyObject *self, PyObject *args, PyObject *kwds)
2540 channel__channel_id(PyObject *self, PyObject *args, PyObject *kwds)