Home
last modified time | relevance | path

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

/third_party/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.tex347 \SeeAlso{unw\_strerror(3)},
/third_party/nghttp2/python/
Dnghttp2.pyx79 raise Exception(_strerror(rv))
123 raise Exception(_strerror(rv))
144 raise Exception(_strerror(rv))
176 raise Exception(_strerror(rv))
198 raise Exception(_strerror(rv))
220 raise Exception(_strerror(rv))
235 cdef _strerror(int liberror_code): function
687 (_strerror(rv)))
705 (_strerror(outbuflen)))
827 (_strerror(rv)))
[all …]
/third_party/libunwind/tests/
Dcheck-namespace.sh.in122 match _U${plat}_strerror
239 match _U${plat}_strerror
/third_party/python/Lib/
Dasyncore.py75 def _strerror(err): function
432 raise OSError(err, _strerror(err))
/third_party/python/Lib/test/
Dtest_asyncore.py311 err = asyncore._strerror(errno.EPERM)
314 err = asyncore._strerror(-1)
/third_party/python/Misc/
DHISTORY13436 - Issue #8573: asyncore _strerror() function might throw ValueError.