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

1 2 3

  /system/core/libsuspend/
autosuspend_wakeup_count.c 54 strerror_r(errno, buf, sizeof(buf));
67 strerror_r(errno, buf, sizeof(buf));
75 strerror_r(errno, buf, sizeof(buf));
81 strerror_r(errno, buf, sizeof(buf));
89 strerror_r(errno, buf, sizeof(buf));
106 strerror_r(errno, buf, sizeof(buf));
125 strerror_r(errno, buf, sizeof(buf));
146 strerror_r(errno, buf, sizeof(buf));
153 strerror_r(errno, buf, sizeof(buf));
160 strerror_r(errno, buf, sizeof(buf))
    [all...]
autosuspend_autosleep.c 45 strerror_r(errno, buf, sizeof(buf));
67 strerror_r(errno, buf, sizeof(buf));
92 strerror_r(errno, buf, sizeof(buf));
autosuspend_earlysuspend.c 114 strerror_r(errno, buf, sizeof(buf));
144 strerror_r(errno, buf, sizeof(buf));
190 strerror_r(errno, buf, sizeof(buf));
206 strerror_r(errno, buf, sizeof(buf));
213 strerror_r(errno, buf, sizeof(buf));
  /bionic/libc/bionic/
perror.c 36 strerror_r( errno, buff, sizeof(buff) );
strerror.cpp 44 strerror_r(error_number, strerror_tls_buffer, strerror_tls_buffer_size);
strerror_r.cpp 1 /* $OpenBSD: strerror_r.c,v 1.6 2005/08/08 08:05:37 espie Exp $ */
46 int strerror_r(int error_number, char* buf, size_t buf_len) { function
  /external/llvm/lib/Support/
Errno.cpp 45 // strerror_r is thread-safe.
48 // glibc defines its own incompatible version of strerror_r
50 str = strerror_r(errnum,buffer,MaxErrStrLen-1);
52 strerror_r(errnum,buffer,MaxErrStrLen-1);
  /external/bison/lib/
perror.c 41 ret = strerror_r (errno, stackbuf, sizeof stackbuf);
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...]
error.c 107 char *strerror_r ();
109 int strerror_r ();
117 # if HAVE_STRERROR_R || defined strerror_r
118 # define __strerror_r strerror_r
119 # endif /* HAVE_STRERROR_R || defined strerror_r */
  /device/samsung/manta/power/
power_manta.c 49 strerror_r(errno, buf, sizeof(buf));
56 strerror_r(errno, buf, sizeof(buf));
75 strerror_r(errno, buf, sizeof(buf));
84 strerror_r(errno, buf, sizeof(buf));
155 strerror_r(errno, buf, sizeof(buf));
179 strerror_r(errno, buf, sizeof(buf));
  /device/samsung/tuna/power/
power_tuna.c 44 strerror_r(errno, buf, sizeof(buf));
51 strerror_r(errno, buf, sizeof(buf));
85 strerror_r(errno, buf, sizeof(buf));
120 strerror_r(errno, buf, sizeof(buf));
  /device/asus/grouper/power/
power.c 39 strerror_r(errno, buf, sizeof(buf));
46 strerror_r(errno, buf, sizeof(buf));
  /external/elfutils/libdwfl/
dwfl_error.c 223 strerror_r (error & 0xffff, "bad", 0);
226 return strerror_r (error & 0xffff, "bad", 0);
  /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);
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/
string.h 67 extern int strerror_r(int errnum, char *buf, size_t n);
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/
string.h 67 extern int strerror_r(int errnum, char *buf, size_t n);
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/
string.h 67 extern int strerror_r(int errnum, char *buf, size_t n);
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
string.h 67 extern int strerror_r(int errnum, char *buf, size_t n);
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/
string.h 67 extern int strerror_r(int errnum, char *buf, size_t n);
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/
string.h 67 extern int strerror_r(int errnum, char *buf, size_t n);
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/
string.h 67 extern int strerror_r(int errnum, char *buf, size_t n);
  /prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/
string.h 67 extern int strerror_r(int errnum, char *buf, size_t n);
  /prebuilts/ndk/6/platforms/android-3/arch-x86/usr/include/
string.h 67 extern int strerror_r(int errnum, char *buf, size_t n);

Completed in 305 milliseconds

1 2 3