Home
last modified time | relevance | path

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

/external/cronet/base/posix/
Dsafe_strerror.cc78 int new_errno = errno; in wrap_posix_strerror_r() local
79 if (new_errno != old_errno) { in wrap_posix_strerror_r()
82 strerror_error = new_errno; in wrap_posix_strerror_r()
/external/cronet/base/allocator/partition_allocator/partition_alloc_base/posix/
Dsafe_strerror.cc78 int new_errno = errno; in wrap_posix_strerror_r() local
79 if (new_errno != old_errno) { in wrap_posix_strerror_r()
82 strerror_error = new_errno; in wrap_posix_strerror_r()
/external/libchrome/base/posix/
Dsafe_strerror.cc87 int new_errno = errno; in wrap_posix_strerror_r() local
88 if (new_errno != old_errno) { in wrap_posix_strerror_r()
91 strerror_error = new_errno; in wrap_posix_strerror_r()
/external/cronet/buildtools/third_party/libc++/trunk/src/
Dsystem_error.cpp102 int new_errno = strerror_return == -1 ? errno : strerror_return; in handle_strerror_r_return() local
103 if (new_errno == EINVAL) in handle_strerror_r_return()
106 _LIBCPP_ASSERT(new_errno == ERANGE, "unexpected error from ::strerror_r"); in handle_strerror_r_return()
/external/libcxx/src/
Dsystem_error.cpp100 int new_errno = strerror_return == -1 ? errno : strerror_return; in handle_strerror_r_return() local
101 if (new_errno == EINVAL) in handle_strerror_r_return()
104 _LIBCPP_ASSERT(new_errno == ERANGE, "unexpected error from ::strerror_r"); in handle_strerror_r_return()
/external/python/cpython3/Modules/_ctypes/
Dcallproc.c203 int new_errno, old_errno; in set_error_internal() local
207 if (!PyArg_ParseTuple(args, "i", &new_errno)) { in set_error_internal()
214 space[index] = new_errno; in set_error_internal()
/external/python/cpython2/Modules/_ctypes/
Dcallproc.c198 int new_errno, old_errno; in set_error_internal() local
202 if (!PyArg_ParseTuple(args, "i", &new_errno)) in set_error_internal()
208 space[index] = new_errno; in set_error_internal()
/external/python/cpython2/Modules/
D_testcapimodule.c1915 int new_errno; in set_errno() local
1917 if (!PyArg_ParseTuple(args, "i:set_errno", &new_errno)) in set_errno()
1920 errno = new_errno; in set_errno()
/external/python/cpython3/Modules/
D_testcapimodule.c2406 int new_errno; in set_errno() local
2408 if (!PyArg_ParseTuple(args, "i:set_errno", &new_errno)) in set_errno()
2411 errno = new_errno; in set_errno()