Lines Matching refs:PyOSErrorObject
880 oserror_init(PyOSErrorObject *self, PyObject **p_args, in oserror_init()
944 OSError_init(PyOSErrorObject *self, PyObject *args, PyObject *kwds);
970 PyOSErrorObject *self = NULL; in OSError_new()
1005 self = (PyOSErrorObject *) type->tp_alloc(type, 0); in OSError_new()
1037 OSError_init(PyOSErrorObject *self, PyObject *args, PyObject *kwds) in OSError_init()
1075 OSError_clear(PyOSErrorObject *self) in OSError_clear()
1088 OSError_dealloc(PyOSErrorObject *self) in OSError_dealloc()
1096 OSError_traverse(PyOSErrorObject *self, visitproc visit, in OSError_traverse()
1110 OSError_str(PyOSErrorObject *self) in OSError_str()
1155 OSError_reduce(PyOSErrorObject *self, PyObject *Py_UNUSED(ignored)) in OSError_reduce()
1204 OSError_written_get(PyOSErrorObject *self, void *context) in OSError_written_get()
1214 OSError_written_set(PyOSErrorObject *self, PyObject *arg, void *context) in OSError_written_set()
1233 {"errno", T_OBJECT, offsetof(PyOSErrorObject, myerrno), 0,
1235 {"strerror", T_OBJECT, offsetof(PyOSErrorObject, strerror), 0,
1237 {"filename", T_OBJECT, offsetof(PyOSErrorObject, filename), 0,
1239 {"filename2", T_OBJECT, offsetof(PyOSErrorObject, filename2), 0,
1242 {"winerror", T_OBJECT, offsetof(PyOSErrorObject, winerror), 0,