Lines Matching refs:PyBaseExceptionObject

32     PyBaseExceptionObject *self;  in BaseException_new()
34 self = (PyBaseExceptionObject *)type->tp_alloc(type, 0); in BaseException_new()
56 BaseException_init(PyBaseExceptionObject *self, PyObject *args, PyObject *kwds) in BaseException_init()
72 BaseException_clear(PyBaseExceptionObject *self) in BaseException_clear()
81 BaseException_dealloc(PyBaseExceptionObject *self) in BaseException_dealloc()
89 BaseException_traverse(PyBaseExceptionObject *self, visitproc visit, void *arg) in BaseException_traverse()
98 BaseException_str(PyBaseExceptionObject *self) in BaseException_str()
119 BaseException_unicode(PyBaseExceptionObject *self) in BaseException_unicode()
155 BaseException_repr(PyBaseExceptionObject *self) in BaseException_repr()
182 BaseException_reduce(PyBaseExceptionObject *self) in BaseException_reduce()
227 BaseException_getitem(PyBaseExceptionObject *self, Py_ssize_t index) in BaseException_getitem()
236 BaseException_getslice(PyBaseExceptionObject *self, in BaseException_getslice()
259 BaseException_get_dict(PyBaseExceptionObject *self) in BaseException_get_dict()
271 BaseException_set_dict(PyBaseExceptionObject *self, PyObject *val) in BaseException_set_dict()
287 BaseException_get_args(PyBaseExceptionObject *self) in BaseException_get_args()
298 BaseException_set_args(PyBaseExceptionObject *self, PyObject *val) in BaseException_set_args()
313 BaseException_get_message(PyBaseExceptionObject *self) in BaseException_get_message()
340 BaseException_set_message(PyBaseExceptionObject *self, PyObject *val) in BaseException_set_message()
373 sizeof(PyBaseExceptionObject), /*tp_basicsize*/
406 offsetof(PyBaseExceptionObject, dict), /* tp_dictoffset */
423 sizeof(PyBaseExceptionObject), \
429 0, 0, 0, offsetof(PyBaseExceptionObject, dict), \
511 if (BaseException_init((PyBaseExceptionObject *)self, args, kwds) == -1) in SystemExit_init()
531 return BaseException_clear((PyBaseExceptionObject *)self); in SystemExit_clear()
546 return BaseException_traverse((PyBaseExceptionObject *)self, visit, arg); in SystemExit_traverse()
595 if (BaseException_init((PyBaseExceptionObject *)self, args, kwds) == -1) in EnvironmentError_init()
632 return BaseException_clear((PyBaseExceptionObject *)self); in EnvironmentError_clear()
650 return BaseException_traverse((PyBaseExceptionObject *)self, visit, arg); in EnvironmentError_traverse()
740 rtnval = BaseException_str((PyBaseExceptionObject *)self); in EnvironmentError_str()
830 return BaseException_clear((PyBaseExceptionObject *)self); in WindowsError_clear()
848 return BaseException_traverse((PyBaseExceptionObject *)self, visit, arg); in WindowsError_traverse()
1053 if (BaseException_init((PyBaseExceptionObject *)self, args, kwds) == -1) in SyntaxError_init()
1099 return BaseException_clear((PyBaseExceptionObject *)self); in SyntaxError_clear()
1119 return BaseException_traverse((PyBaseExceptionObject *)self, visit, arg); in SyntaxError_traverse()
1258 KeyError_str(PyBaseExceptionObject *self) in KeyError_str()
1578 return BaseException_clear((PyBaseExceptionObject *)self); in UnicodeError_clear()
1595 return BaseException_traverse((PyBaseExceptionObject *)self, visit, arg); in UnicodeError_traverse()
1620 if (BaseException_init((PyBaseExceptionObject *)self, args, kwds) == -1) in UnicodeEncodeError_init()
1708 if (BaseException_init((PyBaseExceptionObject *)self, args, kwds) == -1) in UnicodeDecodeError_init()
1793 if (BaseException_init((PyBaseExceptionObject *)self, args, kwds) == -1) in UnicodeTranslateError_init()
2186 PyBaseExceptionObject *err_inst = in _PyExc_Init()
2187 (PyBaseExceptionObject *)PyExc_RecursionErrorInst; in _PyExc_Init()