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

1 2 3 4 5

  /external/compiler-rt/test/asan/TestCases/Posix/
strerror_r_test.cc 11 char *res = (char *)strerror_r(300, buf, sizeof(buf));
  /external/lldb/source/Utility/
PseudoTerminal.cpp 96 ::strerror_r (errno, error_str, error_len);
104 ::strerror_r (errno, error_str, error_len);
113 ::strerror_r (errno, error_str, error_len);
151 ::strerror_r (errno, error_str, error_len);
186 ::strerror_r (errno, error_str, error_len);
229 ::strerror_r (errno, error_str, error_len);
247 ::strerror_r (errno, error_str, error_len);
254 ::strerror_r (errno, error_str, error_len);
260 ::strerror_r (errno, error_str, error_len);
266 ::strerror_r (errno, error_str, error_len)
    [all...]
  /system/core/libsuspend/
autosuspend_wakeup_count.c 56 strerror_r(errno, buf, sizeof(buf));
69 strerror_r(errno, buf, sizeof(buf));
77 strerror_r(errno, buf, sizeof(buf));
83 strerror_r(errno, buf, sizeof(buf));
96 strerror_r(errno, buf, sizeof(buf));
113 strerror_r(errno, buf, sizeof(buf));
132 strerror_r(errno, buf, sizeof(buf));
162 strerror_r(errno, buf, sizeof(buf));
169 strerror_r(errno, buf, sizeof(buf));
176 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 109 strerror_r(errno, buf, sizeof(buf));
139 strerror_r(errno, buf, sizeof(buf));
185 strerror_r(errno, buf, sizeof(buf));
201 strerror_r(errno, buf, sizeof(buf));
208 strerror_r(errno, buf, sizeof(buf));
  /bionic/libc/bionic/
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 $ */
47 int strerror_r(int error_number, char* buf, size_t buf_len) { function
  /external/compiler-rt/test/msan/
strerror_r-non-gnu.c 3 // strerror_r under a weird set of circumstances can be redirected to
14 int res = strerror_r(EINVAL, buf, sizeof(buf));
  /external/llvm/lib/Support/
Errno.cpp 46 // 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/htc/flounder/power/
power_flounder.c 60 strerror_r(errno, buf, sizeof(buf));
67 strerror_r(errno, buf, sizeof(buf));
123 strerror_r(errno, buf, sizeof(buf));
134 strerror_r(errno, buf, sizeof(buf));
140 strerror_r(errno, buf, sizeof(buf));
164 strerror_r(errno, buf, sizeof(buf));
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
perror.c 55 (void)strerror_r(errno, buf, sizeof(buf));
  /device/asus/fugu/power/
power.c 47 strerror_r(errno, buf, sizeof(buf));
53 strerror_r(errno, buf, sizeof(buf));
70 strerror_r(errno, buf, sizeof(buf));
76 strerror_r(errno, buf, sizeof(buf));
  /external/elfutils/0.153/libdwfl/
dwfl_error.c 171 strerror_r (error & 0xffff, "bad", 0);
174 return strerror_r (error & 0xffff, "bad", 0);
  /device/samsung/manta/power/
power_manta.c 67 strerror_r(errno, buf, sizeof(buf));
74 strerror_r(errno, buf, sizeof(buf));
93 strerror_r(errno, buf, sizeof(buf));
102 strerror_r(errno, buf, sizeof(buf));
173 strerror_r(errno, buf, sizeof(buf));
222 strerror_r(errno, buf, sizeof(buf));
  /frameworks/base/services/core/jni/
com_android_server_am_BatteryStatsService.cpp 57 strerror_r(errno, buf, sizeof(buf));
79 strerror_r(errno, buf, sizeof(buf));
94 strerror_r(errno, buf, sizeof(buf));
  /development/ndk/platforms/android-3/include/
string.h 67 extern int strerror_r(int errnum, char *buf, size_t n);
  /external/chromium_org/base/
safe_strerror_posix.cc 6 // Post-L versions of bionic define the GNU-specific strerror_r if _GNU_SOURCE
32 // glibc has two strerror_r functions: a historical GNU-specific one that
53 // Wrapper for strerror_r functions that implement the POSIX interface. POSIX
56 // it will only be used on Linux if the POSIX strerror_r implementation is
89 // Either the error from strerror_r was the same as the previous value, or
108 // appropriate overloaded function based on the function type of strerror_r.
111 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);

Completed in 634 milliseconds

1 2 3 4 5