Lines Matching refs:PyOSErrorObject
856 oserror_init(PyOSErrorObject *self, PyObject **p_args, in oserror_init()
920 OSError_init(PyOSErrorObject *self, PyObject *args, PyObject *kwds);
946 PyOSErrorObject *self = NULL; in OSError_new()
980 self = (PyOSErrorObject *) type->tp_alloc(type, 0); in OSError_new()
1012 OSError_init(PyOSErrorObject *self, PyObject *args, PyObject *kwds) in OSError_init()
1050 OSError_clear(PyOSErrorObject *self) in OSError_clear()
1063 OSError_dealloc(PyOSErrorObject *self) in OSError_dealloc()
1071 OSError_traverse(PyOSErrorObject *self, visitproc visit, in OSError_traverse()
1085 OSError_str(PyOSErrorObject *self) in OSError_str()
1130 OSError_reduce(PyOSErrorObject *self) in OSError_reduce()
1179 OSError_written_get(PyOSErrorObject *self, void *context) in OSError_written_get()
1189 OSError_written_set(PyOSErrorObject *self, PyObject *arg, void *context) in OSError_written_set()
1200 {"errno", T_OBJECT, offsetof(PyOSErrorObject, myerrno), 0,
1202 {"strerror", T_OBJECT, offsetof(PyOSErrorObject, strerror), 0,
1204 {"filename", T_OBJECT, offsetof(PyOSErrorObject, filename), 0,
1206 {"filename2", T_OBJECT, offsetof(PyOSErrorObject, filename2), 0,
1209 {"winerror", T_OBJECT, offsetof(PyOSErrorObject, winerror), 0,