HomeSort by relevance Sort by last modified time
    Searched defs:strerror_r (Results 1 - 10 of 10) sorted by null

  /libcore/ojluni/src/main/native/
jni_util_md.c 47 #define strerror_r(a, b, c) __xpg_strerror_r((a), (b), (c)) macro
55 return strerror_r(err, buf, len);
  /device/linaro/bootloader/edk2/StdLib/LibC/String/
Misc.c 41 strerror_r(int errnum, char *buf, size_t buflen) function
83 status = strerror_r(errnum, errorbuf, sizeof(errorbuf));
  /bionic/libc/bionic/
strerror_r.cpp 1 /* $OpenBSD: strerror_r.c,v 1.6 2005/08/08 08:05:37 espie Exp $ */
52 int strerror_r(int error_number, char* buf, size_t buf_len) { function
71 ErrnoRestorer errno_restorer; // The glibc strerror_r doesn't set errno if it truncates...
72 strerror_r(error_number, buf, buf_len);
  /external/bison/lib/
strerror_r.c 0 /* strerror_r.c --- POSIX compatible system error routine
41 /* The system's strerror_r function is OK, except that its third argument
51 system strerror_r has the wrong return type, and cygwin 1.7.9
52 strerror_r clobbers strerror. */
137 strerror_r (int errnum, char *buf, size_t buflen) function
138 #undef strerror_r macro
171 back to GNU strerror_r which always returns a thread-safe
173 safe_copy (buf, buflen, strerror_r (errnum, buf, buflen));
183 /* On HP-UX 11.31, strerror_r always fails when buflen < 80; it
190 ret = strerror_r (errnum, stackbuf, sizeof stackbuf)
    [all...]
string.in.h 963 # undef strerror_r macro
964 # define strerror_r macro
977 _GL_CXXALIASWARN (strerror_r); variable
980 # undef strerror_r macro
    [all...]
  /external/conscrypt/common/src/jni/main/include/
compat.h 21 // We want the XSI-compliant strerror_r (it's more portable across NDK versions,
53 #define strerror_r(errnum, buf, buflen) strerror_s(buf, buflen, errnum) macro
  /external/bison/darwin-lib/
string.h 1275 # undef strerror_r macro
1276 # define strerror_r macro
1289 _GL_CXXALIASWARN (strerror_r); variable
1292 # undef strerror_r macro
    [all...]
  /external/bison/linux-lib/
string.h 1275 # undef strerror_r macro
1276 # define strerror_r macro
1289 _GL_CXXALIASWARN (strerror_r); variable
1292 # undef strerror_r macro
    [all...]
  /external/fmtlib/fmt/
format.cc 72 // Dummy implementations of strerror_r and strerror_s called if corresponding
74 static inline fmt::internal::Null<> strerror_r(int, char *, ...) { function
134 // Handle the result of XSI-compliant version of strerror_r.
140 // Handle the result of GNU-specific version of strerror_r.
149 // Handle the case when strerror_r is not available.
154 // Fallback to strerror_s when strerror_r is not available.
161 // Fallback to strerror if strerror_r and strerror_s are not available.
173 // Suppress a warning about unused strerror_r.
174 strerror_r(0, FMT_NULL, "");
175 return handle(strerror_r(error_code_, buffer_, buffer_size_))
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
pthread.h 657 #define strerror_r macro
    [all...]

Completed in 310 milliseconds