Home
last modified time | relevance | path

Searched refs:async_err (Results 1 – 10 of 10) sorted by relevance

/third_party/python/Modules/_multiprocessing/
Dposixshmem.c44 int async_err = 0; in _posixshmem_shm_open_impl() local
53 } while (fd < 0 && errno == EINTR && !(async_err = PyErr_CheckSignals())); in _posixshmem_shm_open_impl()
56 if (!async_err) in _posixshmem_shm_open_impl()
83 int async_err = 0; in _posixshmem_shm_unlink_impl() local
92 } while (rv < 0 && errno == EINTR && !(async_err = PyErr_CheckSignals())); in _posixshmem_shm_unlink_impl()
95 if (!async_err) in _posixshmem_shm_unlink_impl()
/third_party/python/Modules/
Dfcntlmodule.c55 int async_err = 0; in fcntl_fcntl_impl() local
75 } while (ret == -1 && errno == EINTR && !(async_err = PyErr_CheckSignals())); in fcntl_fcntl_impl()
77 return !async_err ? PyErr_SetFromErrno(PyExc_OSError) : NULL; in fcntl_fcntl_impl()
96 } while (ret == -1 && errno == EINTR && !(async_err = PyErr_CheckSignals())); in fcntl_fcntl_impl()
98 return !async_err ? PyErr_SetFromErrno(PyExc_OSError) : NULL; in fcntl_fcntl_impl()
286 int async_err = 0; in fcntl_flock_impl() local
297 } while (ret == -1 && errno == EINTR && !(async_err = PyErr_CheckSignals())); in fcntl_flock_impl()
324 } while (ret == -1 && errno == EINTR && !(async_err = PyErr_CheckSignals())); in fcntl_flock_impl()
328 return !async_err ? PyErr_SetFromErrno(PyExc_OSError) : NULL; in fcntl_flock_impl()
374 int async_err = 0; in fcntl_lockf_impl() local
[all …]
Dposixmodule.c1762 int async_err = 0; in posix_fildes_fd() local
1770 } while (res != 0 && errno == EINTR && !(async_err = PyErr_CheckSignals())); in posix_fildes_fd()
1772 return (!async_err) ? posix_error() : NULL; in posix_fildes_fd()
3358 int async_err = 0; in os_fchmod_impl() local
3368 } while (res != 0 && errno == EINTR && !(async_err = PyErr_CheckSignals())); in os_fchmod_impl()
3370 return (!async_err) ? posix_error() : NULL; in os_fchmod_impl()
3701 int async_err = 0; in os_fchown_impl() local
3711 } while (res != 0 && errno == EINTR && !(async_err = PyErr_CheckSignals())); in os_fchown_impl()
3713 return (!async_err) ? posix_error() : NULL; in os_fchown_impl()
6356 int async_err = 0; in _rtp_spawn() local
[all …]
Dsignalmodule.c1194 int async_err = 0; local
1201 && errno == EINTR && !(async_err = PyErr_CheckSignals()));
1203 return (!async_err) ? PyErr_SetFromErrno(PyExc_OSError) : NULL;
Dselectmodule.c583 int async_err = 0; in select_poll_poll_impl() local
632 async_err = 0; in select_poll_poll_impl()
644 async_err = 1; in select_poll_poll_impl()
662 if (!async_err) in select_poll_poll_impl()
/third_party/python/Python/
Dfileutils.c1481 int async_err = 0; in _Py_open_impl() local
1510 && errno == EINTR && !(async_err = PyErr_CheckSignals())); in _Py_open_impl()
1511 if (async_err) { in _Py_open_impl()
1626 int async_err = 0; in _Py_fopen_obj() local
1665 && errno == EINTR && !(async_err = PyErr_CheckSignals())); in _Py_fopen_obj()
1689 && errno == EINTR && !(async_err = PyErr_CheckSignals())); in _Py_fopen_obj()
1693 if (async_err) in _Py_fopen_obj()
1726 int async_err = 0; in _Py_read() local
1753 !(async_err = PyErr_CheckSignals())); in _Py_read()
1756 if (async_err) { in _Py_read()
[all …]
/third_party/openssl/crypto/async/
Dbuild.info3 async.c async_wait.c async_err.c arch/async_posix.c arch/async_win.c \
/third_party/python/Modules/_io/
Dfileio.c245 int async_err = 0; local
390 !(async_err = PyErr_CheckSignals()));
392 if (async_err)
/third_party/openssl/crypto/err/
Dopenssl.ec33 L ASYNC include/openssl/async.h crypto/async/async_err.c
/third_party/openssl/
DBUILD.gn249 "crypto/async/async_err.c",