/bionic/libc/string/ |
strerror.c | 39 (void)strerror_r(num, buf, sizeof(buf));
|
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
|
/bionic/libc/unistd/ |
perror.c | 36 strerror_r( errno, buff, sizeof(buff) );
|
/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/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);
|
/external/chromium/base/ |
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);
|
/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/lib/ |
error.c | 88 char *strerror_r (); 99 # if HAVE_STRERROR_R || defined strerror_r 100 # define __strerror_r strerror_r
|
/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/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));
|
/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)
|
/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
|
/bionic/libc/ |
Android.mk | 193 string/strerror_r.c \
|
/ndk/sources/host-tools/sed-4.2.1/ |
configure | [all...] |
/external/bison/ |
configure | [all...] |
/external/llvm/ |
configure | [all...] |