Lines Matching defs:myerrno
1674 PyObject **myerrno, PyObject **strerror,
1696 myerrno, strerror,
1709 *myerrno = PyLong_FromLong(errcode);
1710 if (!*myerrno)
1715 PyTuple_SET_ITEM(newargs, 0, *myerrno);
1732 PyObject *myerrno, PyObject *strerror,
1774 Py_XINCREF(myerrno);
1775 self->myerrno = myerrno;
1822 PyObject *myerrno = NULL, *strerror = NULL;
1834 if (oserror_parse_args(&args, &myerrno, &strerror,
1843 if (myerrno && PyLong_Check(myerrno) &&
1846 newtype = PyDict_GetItemWithError(state->errnomap, myerrno);
1864 if (oserror_init(self, &args, myerrno, strerror, filename, filename2
1889 PyObject *myerrno = NULL, *strerror = NULL;
1903 if (oserror_parse_args(&args, &myerrno, &strerror, &filename, &filename2
1910 if (oserror_init(self, &args, myerrno, strerror, filename, filename2
1927 Py_CLEAR(self->myerrno);
1949 Py_VISIT(self->myerrno);
1964 /* If available, winerror has the priority over myerrno */
1987 OR_NONE(self->myerrno),
1993 OR_NONE(self->myerrno),
1998 if (self->myerrno && self->strerror)
2000 self->myerrno, self->strerror);
2083 {"errno", T_OBJECT, offsetof(PyOSErrorObject, myerrno), 0,