Lines Matching refs:self
57 void PyUNO_callable_del (PyObject* self) in PyUNO_callable_del() argument
61 me = (PyUNO_callable*) self; in PyUNO_callable_del()
63 PyObject_Del (self); in PyUNO_callable_del()
68 PyObject* PyUNO_callable_call (PyObject* self, PyObject* args, PyObject*) in PyUNO_callable_call() argument
80 me = (PyUNO_callable*) self; in PyUNO_callable_call()
252 PyUNO_callable* self; in PyUNO_callable_new() local
254 self = PyObject_New (PyUNO_callable, &PyUNO_callable_Type); in PyUNO_callable_new()
255 if (self == NULL) in PyUNO_callable_new()
258 self->members = new PyUNO_callable_Internals; in PyUNO_callable_new()
259 self->members->xInvocation = my_inv; in PyUNO_callable_new()
260 self->members->methodName = methodName; in PyUNO_callable_new()
261 self->members->mode = mode; in PyUNO_callable_new()
263 return PyRef( (PyObject*)self, SAL_NO_ACQUIRE ); in PyUNO_callable_new()