Searched refs:myerrno (Results 1 – 4 of 4) sorted by relevance
/third_party/python/Objects/ |
D | exceptions.c | 816 PyObject **myerrno, PyObject **strerror, in oserror_parse_args() argument 838 myerrno, strerror, in oserror_parse_args() 858 *myerrno = PyLong_FromLong(errcode); in oserror_parse_args() 859 if (!*myerrno) in oserror_parse_args() 864 PyTuple_SET_ITEM(newargs, 0, *myerrno); in oserror_parse_args() 881 PyObject *myerrno, PyObject *strerror, in oserror_init() argument 923 Py_XINCREF(myerrno); in oserror_init() 924 self->myerrno = myerrno; in oserror_init() 971 PyObject *myerrno = NULL, *strerror = NULL; in OSError_new() local 983 if (oserror_parse_args(&args, &myerrno, &strerror, in OSError_new() [all …]
|
/third_party/python/Include/cpython/ |
D | pyerrors.h | 52 PyObject *myerrno; member
|
/third_party/alsa-lib/src/ucm/ |
D | main.c | 515 int fd, myerrno; in execute_sysw() local 562 myerrno = errno; in execute_sysw() 570 uc_error("unable to write '%s' to '%s': %s", value, path, strerror(myerrno)); in execute_sysw()
|
/third_party/python/Modules/_io/ |
D | bufferedio.c | 779 if (env_err->myerrno != NULL && in _PyIO_trap_eintr() 780 PyObject_RichCompareBool(env_err->myerrno, eintr_int, Py_EQ) > 0) { in _PyIO_trap_eintr()
|