Searched refs:new_errno (Results 1 – 9 of 9) sorted by relevance
/external/cronet/base/posix/ |
D | safe_strerror.cc | 78 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/ |
D | safe_strerror.cc | 78 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/ |
D | safe_strerror.cc | 87 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/ |
D | system_error.cpp | 102 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/ |
D | system_error.cpp | 100 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/ |
D | callproc.c | 203 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/ |
D | callproc.c | 198 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.c | 1915 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.c | 2406 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()
|