Home
last modified time | relevance | path

Searched refs:_strerror (Results 1 – 9 of 9) sorted by relevance

/external/libunwind/doc/
Dunw_strerror.tex8 \begin{Name}{3}{unw\_strerror}{Thomas Hallgren}{Programming Library}{unw\_strerror}unw\_strerror --…
15 \Type{const char *} \Func{unw\_strerror}(\Type{int} \Var{err\_code});\\
19 The \Func{unw\_strerror}() routine maps the (negative) \Var{err\_code}
30 \Func{unw\_strerror}() is thread-safe as well as safe to use
Dlibunwind.tex343 \SeeAlso{unw\_strerror(3)},
/external/libunwind/tests/
Dcheck-namespace.sh.in114 match _U${plat}_strerror
196 match _U${plat}_strerror
/external/python/cpython3/Lib/
Dasyncore.py68 def _strerror(err): function
427 raise OSError(err, _strerror(err))
/external/python/cpython2/Lib/
Dasyncore.py68 def _strerror(err): function
454 raise socket.error(err, _strerror(err))
/external/python/cpython2/Lib/test/
Dtest_asyncore.py329 err = asyncore._strerror(errno.EPERM)
332 err = asyncore._strerror(-1)
/external/python/cpython3/Lib/test/
Dtest_asyncore.py304 err = asyncore._strerror(errno.EPERM)
307 err = asyncore._strerror(-1)
/external/python/cpython2/Misc/NEWS.d/
D2.7b2.rst118 asyncore ``_strerror()`` function might throw ValueError.
/external/python/cpython3/Misc/
DHISTORY13436 - Issue #8573: asyncore _strerror() function might throw ValueError.