Lines Matching refs:PyOSErrorObject
1731 oserror_init(PyOSErrorObject *self, PyObject **p_args, in oserror_init()
1795 OSError_init(PyOSErrorObject *self, PyObject *args, PyObject *kwds);
1821 PyOSErrorObject *self = NULL; in OSError_new()
1855 self = (PyOSErrorObject *) type->tp_alloc(type, 0); in OSError_new()
1887 OSError_init(PyOSErrorObject *self, PyObject *args, PyObject *kwds) in OSError_init()
1925 OSError_clear(PyOSErrorObject *self) in OSError_clear()
1938 OSError_dealloc(PyOSErrorObject *self) in OSError_dealloc()
1946 OSError_traverse(PyOSErrorObject *self, visitproc visit, in OSError_traverse()
1960 OSError_str(PyOSErrorObject *self) in OSError_str()
2005 OSError_reduce(PyOSErrorObject *self, PyObject *Py_UNUSED(ignored)) in OSError_reduce()
2054 OSError_written_get(PyOSErrorObject *self, void *context) in OSError_written_get()
2064 OSError_written_set(PyOSErrorObject *self, PyObject *arg, void *context) in OSError_written_set()
2083 {"errno", T_OBJECT, offsetof(PyOSErrorObject, myerrno), 0,
2085 {"strerror", T_OBJECT, offsetof(PyOSErrorObject, strerror), 0,
2087 {"filename", T_OBJECT, offsetof(PyOSErrorObject, filename), 0,
2089 {"filename2", T_OBJECT, offsetof(PyOSErrorObject, filename2), 0,
2092 {"winerror", T_OBJECT, offsetof(PyOSErrorObject, winerror), 0,