/third_party/ltp/testcases/kernel/sched/nptl/ |
D | nptl01.c | 78 strerror_r(ret, buf, buf_len)); in call_mutex_init() 88 strerror_r(ret, buf, buf_len)); in call_mutex_lock() 98 strerror_r(ret, buf, buf_len)); in call_mutex_unlock() 108 strerror_r(ret, buf, buf_len)); in call_cond_init() 119 strerror_r(ret, buf, buf_len)); in call_cond_wait() 129 strerror_r(ret, buf, buf_len)); in call_cond_signal() 142 strerror_r(errno, buf, buf_len)); in do_timedwait() 193 strerror_r(ret, buf, buf_len)); in create_child_thread() 199 strerror_r(ret, buf, buf_len)); in create_child_thread() 203 strerror_r(ret, buf, buf_len)); in create_child_thread() [all …]
|
/third_party/musl/Benchmark/musl/ |
D | libc_errno.cpp | 101 benchmark::DoNotOptimize(strerror_r(e, g_errorBuffer, sizeof(g_errorBuffer))); in Bm_function_Strerror_r_noerror() 110 benchmark::DoNotOptimize(strerror_r(e, g_errorBuffer, sizeof(g_errorBuffer))); in Bm_function_Strerror_r_enoent() 119 benchmark::DoNotOptimize(strerror_r(e, g_errorBuffer, sizeof(g_errorBuffer))); in Bm_function_Strerror_r_enomem() 128 benchmark::DoNotOptimize(strerror_r(e, g_errorBuffer, sizeof(g_errorBuffer))); in Bm_function_Strerror_r_eacces() 137 benchmark::DoNotOptimize(strerror_r(e, g_errorBuffer, sizeof(g_errorBuffer))); in Bm_function_Strerror_r_eexist() 146 benchmark::DoNotOptimize(strerror_r(e, g_errorBuffer, sizeof(g_errorBuffer))); in Bm_function_Strerror_r_einval() 155 benchmark::DoNotOptimize(strerror_r(e, g_errorBuffer, sizeof(g_errorBuffer))); in Bm_function_Strerror_r_erofs() 164 benchmark::DoNotOptimize(strerror_r(e, g_errorBuffer, sizeof(g_errorBuffer))); in Bm_function_Strerror_r_etimeout()
|
/third_party/musl/libc-test/src/functionalext/supplement/string/ |
D | strerror_r.c | 31 int32_t ret = strerror_r(EDOM, src, BUFSIZE); in strerror_r_0100() 43 int32_t ret = strerror_r(EDOM, src, 0); in strerror_r_0200() 55 int32_t ret = strerror_r(EDOM, src, invalidParam); in strerror_r_0300()
|
D | test_src_functionalext_supplement_string.gni | 25 "strerror_r",
|
/third_party/musl/src/string/ |
D | strerror_r.c | 4 int strerror_r(int err, char *buf, size_t buflen) in strerror_r() function 19 weak_alias(strerror_r, __xpg_strerror_r);
|
/third_party/musl/porting/liteos_a/kernel/src/string/ |
D | strerror_r.c | 4 int strerror_r(int err, char *buf, size_t buflen) in strerror_r() function 19 weak_alias(strerror_r, __xpg_strerror_r);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | Errno.cpp | 52 str = strerror_r(errnum, buffer, MaxErrStrLen - 1); in StrError() 54 strerror_r(errnum, buffer, MaxErrStrLen - 1); in StrError()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | Errno.cpp | 51 str = strerror_r(errnum, buffer, MaxErrStrLen - 1); in StrError() 53 strerror_r(errnum, buffer, MaxErrStrLen - 1); in StrError()
|
/third_party/pulseaudio/src/pulsecore/ |
D | core-error.c | 53 original = strerror_r(errnum, errbuf, sizeof(errbuf)); in pa_cstrerror() 55 if (strerror_r(errnum, errbuf, sizeof(errbuf)) == 0) { in pa_cstrerror()
|
/third_party/elfutils/libdwfl/ |
D | dwfl_error.c | 146 return strerror_r (error, unknown, 0); in errnomsg() 150 return strerror_r (error, msg, sizeof (msg)) ? unknown : msg; in errnomsg()
|
/third_party/curl/CMake/ |
D | CurlTests.c | 383 check(strerror_r(EACCES, buffer, sizeof(buffer))[0]); in main() 398 check(strerror_r(EACCES, buffer, sizeof(buffer))); in main()
|
/third_party/nghttp2/src/ |
D | xsi_strerror.c | 41 rv = strerror_r(errnum, buf, buflen); in xsi_strerror()
|
/third_party/libbpf/src/ |
D | str_error.c | 17 int ret = strerror_r(err < 0 ? -err : err, dst, len); in libbpf_strerror_r()
|
D | libbpf_errno.c | 50 ret = strerror_r(err, buf, size); in libbpf_strerror()
|
/third_party/openssl/crypto/ |
D | o_str.c | 309 err = strerror_r(errnum, buf, buflen); in openssl_strerror_r() 329 return !strerror_r(errnum, buf, buflen); in openssl_strerror_r()
|
/third_party/node/deps/openssl/openssl/crypto/ |
D | o_str.c | 309 err = strerror_r(errnum, buf, buflen); in openssl_strerror_r() 329 return !strerror_r(errnum, buf, buflen); in openssl_strerror_r()
|
/third_party/curl/m4/ |
D | curl-reentrant.m4 | 156 dnl makes function strerror_r compiler visible. 160 AC_LANG_FUNC_LINK_TRY([strerror_r]) 167 AC_EGREP_CPP([strerror_r],[ 173 AC_EGREP_CPP([strerror_r],[
|
/third_party/gn/src/base/posix/ |
D | safe_strerror.cc | 116 wrap_posix_strerror_r(&strerror_r, err, buf, len); in safe_strerror_r()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/base/internal/ |
D | strerror.cc | 41 auto ret = strerror_r(errnum, buf, buflen); in StrErrorAdaptor()
|
/third_party/musl/libc-test/src/api/ |
D | string.c | 37 {int(*p)(int,char*,size_t) = strerror_r;} in f()
|
/third_party/node/deps/cares/m4/ |
D | cares-reentrant.m4 | 149 dnl makes function strerror_r compiler visible. 153 AC_LANG_FUNC_LINK_TRY([strerror_r]) 160 AC_EGREP_CPP([strerror_r],[ 166 AC_EGREP_CPP([strerror_r],[
|
/third_party/musl/include/ |
D | string.h | 66 int strerror_r (int, char *, size_t);
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | string.h | 64 int strerror_r (int, char *, size_t);
|
/third_party/musl/porting/linux/user/include/ |
D | string.h | 66 int strerror_r (int, char *, size_t);
|
/third_party/musl/ndk_musl_include/ |
D | string.h | 64 int strerror_r (int, char *, size_t);
|