Lines Matching refs:PyEnvironmentErrorObject
589 EnvironmentError_init(PyEnvironmentErrorObject *self, PyObject *args, in EnvironmentError_init()
627 EnvironmentError_clear(PyEnvironmentErrorObject *self) in EnvironmentError_clear()
636 EnvironmentError_dealloc(PyEnvironmentErrorObject *self) in EnvironmentError_dealloc()
644 EnvironmentError_traverse(PyEnvironmentErrorObject *self, visitproc visit, in EnvironmentError_traverse()
654 EnvironmentError_str(PyEnvironmentErrorObject *self) in EnvironmentError_str()
746 {"errno", T_OBJECT, offsetof(PyEnvironmentErrorObject, myerrno), 0,
748 {"strerror", T_OBJECT, offsetof(PyEnvironmentErrorObject, strerror), 0,
750 {"filename", T_OBJECT, offsetof(PyEnvironmentErrorObject, filename), 0,
757 EnvironmentError_reduce(PyEnvironmentErrorObject *self) in EnvironmentError_reduce()
858 if (EnvironmentError_init((PyEnvironmentErrorObject *)self, args, kwds) in WindowsError_init()
971 rtnval = EnvironmentError_str((PyEnvironmentErrorObject *)self); in WindowsError_str()