Searched defs:myerrno (Results 1 - 6 of 6) sorted by relevance

/external/python/cpython2/Modules/_io/
H A D_iomodule.h80 PyObject *myerrno; member in struct:__anon19380
H A D_iomodule.c102 PyObject *myerrno = NULL, *strerror = NULL;
110 &myerrno, &strerror, &written))
113 baseargs = PyTuple_Pack(2, myerrno, strerror);
116 /* This will take care of initializing of myerrno and strerror members */
100 PyObject *myerrno = NULL, *strerror = NULL; local
/external/python/cpython2/Include/
H A Dpyerrors.h56 PyObject *myerrno; member in struct:__anon19273
67 PyObject *myerrno; member in struct:__anon19274
/external/python/cpython3/Include/
H A Dpyerrors.h53 PyObject *myerrno; member in struct:__anon19841
/external/python/cpython2/Objects/
H A Dexceptions.c596 PyObject *myerrno = NULL, *strerror = NULL, *filename = NULL; local
607 &myerrno, &strerror, &filename)) {
610 Py_INCREF(myerrno);
611 Py_XSETREF(self->myerrno, myerrno);
633 Py_CLEAR(self->myerrno);
651 Py_VISIT(self->myerrno);
683 if (self->myerrno) {
684 Py_INCREF(self->myerrno);
685 PyTuple_SET_ITEM(tuple, 0, self->myerrno);
[all...]
/external/python/cpython3/Objects/
H A Dexceptions.c744 PyObject **myerrno, PyObject **strerror,
766 myerrno, strerror,
786 *myerrno = PyLong_FromLong(errcode);
787 if (!*myerrno)
792 PyTuple_SET_ITEM(newargs, 0, *myerrno);
809 PyObject *myerrno, PyObject *strerror,
851 Py_XINCREF(myerrno);
852 self->myerrno = myerrno;
899 PyObject *myerrno local
743 oserror_parse_args(PyObject **p_args, PyObject **myerrno, PyObject **strerror, PyObject **filename, PyObject **filename2 , PyObject **winerror ) argument
808 oserror_init(PyOSErrorObject *self, PyObject **p_args, PyObject *myerrno, PyObject *strerror, PyObject *filename, PyObject *filename2 , PyObject *winerror ) argument
966 PyObject *myerrno = NULL, *strerror = NULL; local
[all...]

Completed in 391 milliseconds