HomeSort by relevance Sort by last modified time
    Searched full:strerror_r (Results 1 - 25 of 107) sorted by null

1 2 3 4 5

  /external/chromium/base/
safe_strerror_posix.h 17 // alternative strerror_r varies in semantics across platforms. Use these
22 // If there is an error calling the OS's strerror_r() function then a message to
26 // Use this instead of strerror_r().
safe_strerror_posix.cc 24 // glibc has two strerror_r functions: a historical GNU-specific one that
45 // Wrapper for strerror_r functions that implement the POSIX interface. POSIX
48 // it will only be used on Linux if the POSIX strerror_r implementation is
81 // Either the error from strerror_r was the same as the previous value, or
100 // appropriate overloaded function based on the function type of strerror_r.
103 wrap_posix_strerror_r(&strerror_r, err, buf, len);
  /external/llvm/lib/Support/
Errno.cpp 44 // strerror_r is thread-safe.
47 // glibc defines its own incompatible version of strerror_r
49 str = strerror_r(errnum,buffer,MaxErrStrLen-1);
51 strerror_r(errnum,buffer,MaxErrStrLen-1);
  /bionic/libc/string/
strerror_r.c 1 /* $OpenBSD: strerror_r.c,v 1.6 2005/08/08 08:05:37 espie Exp $ */
93 strerror_r(int errnum, char *strerrbuf, size_t buflen) function
strerror.c 39 (void)strerror_r(num, buf, sizeof(buf));
  /bionic/libc/unistd/
perror.c 36 strerror_r( errno, buff, sizeof(buff) );
  /dalvik/libnativehelper/
JNIHelp.cpp 286 // Note: glibc has a nonstandard strerror_r that returns char* rather than POSIX's int.
287 // char *strerror_r(int errnum, char *buf, size_t n);
288 char* ret = (char*) strerror_r(errnum, buf, buflen);
290 // POSIX strerror_r, success
293 // POSIX strerror_r, failure
296 // type of strerror_r to accurately distinguish GNU from POSIX. But
301 // glibc strerror_r returning a string
  /ndk/sources/host-tools/sed-4.2.1/lib/
error.c 92 char *strerror_r ();
99 # if HAVE_STRERROR_R || defined strerror_r
100 # define __strerror_r strerror_r
101 # endif /* HAVE_STRERROR_R || defined strerror_r */
  /external/bison/lib/
error.c 88 char *strerror_r ();
99 # if HAVE_STRERROR_R || defined strerror_r
100 # define __strerror_r strerror_r
  /external/chromium/net/tools/flip_server/
epoll_server.cc 8 #include <errno.h> // for errno and strerror_r
55 // The size we use for buffers passed to strerror_r
105 << " in pipe(): " << strerror_r(saved_errno, buf, sizeof(buf));
235 << strerror_r(saved_errno, buf, sizeof(buf));
246 << strerror_r(saved_errno, buf, sizeof(buf));
565 << strerror_r(saved_errno, buf, sizeof(buf));
583 << strerror_r(saved_errno, buf, sizeof(buf));
603 << strerror_r(saved_errno, buf, sizeof(buf));
681 << strerror_r(saved_errno, buf, sizeof(buf));
  /bionic/libc/include/
string.h 67 extern int strerror_r(int errnum, char *buf, size_t n);
  /development/ndk/platforms/android-3/include/
string.h 67 extern int strerror_r(int errnum, char *buf, size_t n);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
string.h 260 There are 2 flavors of `strerror_r', GNU which returns the string
270 extern int __REDIRECT_NTH (strerror_r,
276 # define strerror_r __xpg_strerror_r
281 extern char *strerror_r (int __errnum, char *__buf, size_t __buflen)
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/
string.h 67 extern int strerror_r(int errnum, char *buf, size_t n);
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/
string.h 67 extern int strerror_r(int errnum, char *buf, size_t n);
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/
string.h 67 extern int strerror_r(int errnum, char *buf, size_t n);
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/
string.h 67 extern int strerror_r(int errnum, char *buf, size_t n);
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/
string.h 67 extern int strerror_r(int errnum, char *buf, size_t n);
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/
string.h 67 extern int strerror_r(int errnum, char *buf, size_t n);
  /prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/
string.h 67 extern int strerror_r(int errnum, char *buf, size_t n);
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/
string.h 67 extern int strerror_r(int errnum, char *buf, size_t n);
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/
string.h 67 extern int strerror_r(int errnum, char *buf, size_t n);
  /external/bison/
config.h 111 /* Define to 1 if you have the declaration of `strerror_r', and to 0 if you
216 /* Define to 1 if you have the `strerror_r' function. */
330 /* Define to 1 if strerror_r returns char *. */
config.hin 110 /* Define to 1 if you have the declaration of `strerror_r', and to 0 if you
215 /* Define to 1 if you have the `strerror_r' function. */
329 /* Define to 1 if strerror_r returns char *. */
  /dalvik/libnativehelper/include/nativehelper/
JNIHelp.h 79 * strerror_r).

Completed in 2312 milliseconds

1 2 3 4 5