Lines Matching refs:PyObject
58 static PyObject *S_ident_o = NULL; /* identifier, held by openlog() */
62 static PyObject *
72 PyObject *scriptobj;
74 PyObject *argv = PySys_GetObject("argv");
109 static PyObject *
110 syslog_openlog(PyObject * self, PyObject * args, PyObject *kwds)
114 PyObject *new_S_ident_o = NULL;
144 static PyObject *
145 syslog_syslog(PyObject * self, PyObject * args)
160 PyObject *openargs;
167 PyObject *openlog_ret = syslog_openlog(self, openargs, NULL);
180 static PyObject *
181 syslog_closelog(PyObject *self, PyObject *unused)
193 static PyObject *
194 syslog_setlogmask(PyObject *self, PyObject *args)
204 static PyObject *
205 syslog_log_mask(PyObject *self, PyObject *args)
215 static PyObject *
216 syslog_log_upto(PyObject *self, PyObject *args)
243 PyObject *m;