Home
last modified time | relevance | path

Searched refs:old_errno (Results 1 – 14 of 14) sorted by relevance

/third_party/curl/lib/
Dstrerror.c720 int old_errno = errno; in Curl_strerror() local
809 if(errno != old_errno) in Curl_strerror()
810 errno = old_errno; in Curl_strerror()
830 int old_errno = errno; in Curl_winapi_strerror() local
849 if(errno != old_errno) in Curl_winapi_strerror()
850 errno = old_errno; in Curl_winapi_strerror()
871 int old_errno = errno; in Curl_sspi_strerror() local
1000 if(errno != old_errno) in Curl_sspi_strerror()
1001 errno = old_errno; in Curl_sspi_strerror()
Dparsedate.c379 int old_errno; in parsedate() local
381 old_errno = errno; in parsedate()
385 if(errno != old_errno) in parsedate()
386 errno = old_errno; in parsedate()
/third_party/gn/src/base/posix/
Dsafe_strerror.cc71 int old_errno = errno; in wrap_posix_strerror_r() local
92 if (new_errno != old_errno) { in wrap_posix_strerror_r()
105 errno = old_errno; in wrap_posix_strerror_r()
/third_party/musl/src/signal/
Dpsignal.c19 int old_errno = errno; in psignal() local
22 errno = old_errno; in psignal()
/third_party/musl/src/dirent/
Dscandir.c15 int old_errno = errno; in scandir() local
40 errno = old_errno; in scandir()
/third_party/musl/src/thread/
Dsynccall.c24 int old_errno = errno; in handler() local
41 errno = old_errno; in handler()
/third_party/cef/libcef_dll/base/
Dcef_logging.cc77 int old_errno = errno; in wrap_posix_strerror_r() local
98 if (new_errno != old_errno) { in wrap_posix_strerror_r()
111 errno = old_errno; in wrap_posix_strerror_r()
/third_party/musl/src/locale/
Ddcngettext.c125 int old_errno = errno; in dcngettext() local
142 errno = old_errno; in dcngettext()
255 errno = old_errno; in dcngettext()
/third_party/musl/porting/linux/user/src/locale/
Ddcngettext.c156 int old_errno = errno; in dcngettext() local
183 errno = old_errno; in dcngettext()
318 errno = old_errno; in dcngettext()
/third_party/musl/src/regex/
Dglob.c133 int old_errno = errno; in do_glob() local
171 errno = old_errno; in do_glob()
/third_party/curl/tests/server/
Dutil.c590 int old_errno = errno; in exit_signal_handler() local
601 errno = old_errno; in exit_signal_handler()
/third_party/python/Modules/_ctypes/
Dcallproc.c203 int new_errno, old_errno; in set_error_internal() local
213 old_errno = space[index]; in set_error_internal()
216 return PyLong_FromLong(old_errno); in set_error_internal()
/third_party/python/Modules/
Dposixmodule.c7858 int old_errno = errno; in os_getlogin_impl() local
7870 errno = old_errno; in os_getlogin_impl()
/third_party/chromium/patch/
D0003-3.2-Beta3-1115.patch25271 errno = old_errno;