Home
last modified time | relevance | path

Searched refs:strerror_r (Results 1 – 25 of 71) sorted by relevance

123

/third_party/ltp/testcases/kernel/sched/nptl/
Dnptl01.c78 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/
Dlibc_errno.cpp101 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/
Dstrerror_r.c31 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()
Dtest_src_functionalext_supplement_string.gni25 "strerror_r",
/third_party/musl/src/string/
Dstrerror_r.c4 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/
Dstrerror_r.c4 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/
DErrno.cpp52 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/
DErrno.cpp51 str = strerror_r(errnum, buffer, MaxErrStrLen - 1); in StrError()
53 strerror_r(errnum, buffer, MaxErrStrLen - 1); in StrError()
/third_party/pulseaudio/src/pulsecore/
Dcore-error.c53 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/
Ddwfl_error.c146 return strerror_r (error, unknown, 0); in errnomsg()
150 return strerror_r (error, msg, sizeof (msg)) ? unknown : msg; in errnomsg()
/third_party/curl/CMake/
DCurlTests.c383 check(strerror_r(EACCES, buffer, sizeof(buffer))[0]); in main()
398 check(strerror_r(EACCES, buffer, sizeof(buffer))); in main()
/third_party/nghttp2/src/
Dxsi_strerror.c41 rv = strerror_r(errnum, buf, buflen); in xsi_strerror()
/third_party/libbpf/src/
Dstr_error.c17 int ret = strerror_r(err < 0 ? -err : err, dst, len); in libbpf_strerror_r()
Dlibbpf_errno.c50 ret = strerror_r(err, buf, size); in libbpf_strerror()
/third_party/openssl/crypto/
Do_str.c309 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/
Do_str.c309 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/
Dcurl-reentrant.m4156 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/
Dsafe_strerror.cc116 wrap_posix_strerror_r(&strerror_r, err, buf, len); in safe_strerror_r()
/third_party/skia/third_party/externals/abseil-cpp/absl/base/internal/
Dstrerror.cc41 auto ret = strerror_r(errnum, buf, buflen); in StrErrorAdaptor()
/third_party/musl/libc-test/src/api/
Dstring.c37 {int(*p)(int,char*,size_t) = strerror_r;} in f()
/third_party/node/deps/cares/m4/
Dcares-reentrant.m4149 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/
Dstring.h66 int strerror_r (int, char *, size_t);
/third_party/musl/porting/uniproton/kernel/include/
Dstring.h64 int strerror_r (int, char *, size_t);
/third_party/musl/porting/linux/user/include/
Dstring.h66 int strerror_r (int, char *, size_t);
/third_party/musl/ndk_musl_include/
Dstring.h64 int strerror_r (int, char *, size_t);

123