Searched defs:strerror (Results 1 - 22 of 22) sorted by relevance

/external/bison/lib/
H A Dstrerror.c0 /* strerror.c --- POSIX compatible system error routine
29 #include "strerror-override.h"
36 strerror (int n) function
37 #undef strerror macro
42 /* Cast away const, due to the historical signature of strerror;
48 msg = strerror (n);
50 /* Our strerror_r implementation might use the system's strerror
51 buffer, so all other clients of strerror have to see the error
53 even if the system strerror is, but portable programs shouldn't
54 be using strerror i
[all...]
H A Dstrerror_r.c32 #include "strerror-override.h"
50 /* Use the system's strerror(). Exclude glibc and cygwin because the
52 strerror_r clobbers strerror. */
53 # undef strerror macro
82 /* This lock protects the buffer returned by strerror(). We assume that
83 no other uses of strerror() exist in the program. */
240 /* Try to do what strerror (errnum) does, but without clobbering the
241 buffer used by strerror(). */
284 /* For a valid error number, the system's strerror() function returns
288 char *errmsg = strerror (errnu
[all...]
H A Dstring.in.h942 # undef strerror macro
943 # define strerror rpl_strerror macro
945 _GL_FUNCDECL_RPL (strerror, char *, (int));
946 _GL_CXXALIAS_RPL (strerror, char *, (int));
948 _GL_CXXALIAS_SYS (strerror, char *, (int));
950 _GL_CXXALIASWARN (strerror); variable
952 # undef strerror macro
953 /* Assume strerror is always declared. */
954 _GL_WARN_ON_USE (strerror, "strerror i
[all...]
/external/chromium_org/third_party/npapi/npspy/extern/nspr/md/
H A Dsunos4.h66 #define strerror(e) sys_errlist[((unsigned)(e) < sys_nerr) ? e : 0] macro
/external/linux-tools-perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
H A DUtil.py82 def strerror(nr): function
/external/valgrind/main/coregrind/
H A Dm_syscall.c757 const HChar* VG_(strerror) ( UWord errnum ) function
800 default: return "VG_(strerror): unknown error";
/external/bison/darwin-lib/
H A Dstring.h1254 # undef strerror macro
1255 # define strerror rpl_strerror macro
1257 _GL_FUNCDECL_RPL (strerror, char *, (int));
1258 _GL_CXXALIAS_RPL (strerror, char *, (int));
1260 _GL_CXXALIAS_SYS (strerror, char *, (int));
1262 _GL_CXXALIASWARN (strerror); variable
1264 # undef strerror macro
1265 /* Assume strerror is always declared. */
1266 _GL_WARN_ON_USE (strerror, "strerror i
[all...]
/external/bison/linux-lib/
H A Dstring.h1254 # undef strerror
1255 # define strerror rpl_strerror
1257 _GL_FUNCDECL_RPL (strerror, char *, (int));
1258 _GL_CXXALIAS_RPL (strerror, char *, (int));
1260 _GL_CXXALIAS_SYS (strerror, char *, (int));
1262 _GL_CXXALIASWARN (strerror); variable
1264 # undef strerror macro
1265 /* Assume strerror is always declared. */
1266 _GL_WARN_ON_USE (strerror, "strerror i
[all...]
/external/chromium_org/third_party/skia/src/xml/
H A DSkJS.cpp38 char *strerror(int errnum) { function
/external/openssh/openbsd-compat/
H A Dbsd-misc.c94 const char *strerror(int e) function
/external/skia/src/xml/
H A DSkJS.cpp38 char *strerror(int errnum) { function
/external/mksh/src/
H A Dshf.c1085 #undef strerror macro
1086 return (strerror(errnum));
1087 #define strerror dontuse_strerror /* poisoned */ macro
H A Dsh.h373 #define strerror /* poisoned */ dontuse_strerror macro
377 #define cstrerror(errnum) ((const char *)strerror(errnum))
/external/qemu/slirp/
H A Dmisc.c139 * For systems with no strerror
146 strerror(error) function
272 lprint("Error: openpty failed: %s\n", strerror(errno));
286 lprint("Error: inet socket: %s\n", strerror(errno));
295 lprint("Error: fork failed: %s\n", strerror(errno));
367 argv[0], strerror(errno));
838 lprint("Error: pipe failed: %s\n", strerror(errno));
846 lprint("Error: openpty failed: %s\n", strerror(errno));
853 lprint("Error: openpty failed: %s\n", strerror(errno));
860 lprint("Error: fork failed: %s\n", strerror(errn
[all...]
/external/qemu/slirp-android/
H A Dmisc.c119 * For systems with no strerror
126 strerror(error) function
249 lprint("Error: openpty failed: %s\n", strerror(errno));
264 lprint("Error: fork failed: %s\n", strerror(errno));
334 argv[0], strerror(errno));
804 lprint("Error: pipe failed: %s\n", strerror(errno));
812 lprint("Error: openpty failed: %s\n", strerror(errno));
819 lprint("Error: openpty failed: %s\n", strerror(errno));
826 lprint("Error: fork failed: %s\n", strerror(errno));
859 "rsh", strerror(errn
[all...]
/external/chromium/third_party/libjingle/source/talk/examples/call/
H A Dcallclient.cc260 const std::string CallClient::strerror(buzz::XmppEngine::Error err) { function in class:CallClient
324 console_->Print("logged out..." + strerror(error));
/external/chromium_org/third_party/openssl/openssl/
H A De_os.h642 # define strerror(errnum) \ macro
/external/openssl/
H A De_os.h642 # define strerror(errnum) \ macro
/external/oprofile/libpopt/
H A Dpopt.c27 static char * strerror(int errno) function
1204 return strerror(errno);
/external/chromium_org/third_party/libjingle/source/talk/examples/call/
H A Dcallclient.cc412 const std::string CallClient::strerror(buzz::XmppEngine::Error err) { function in class:CallClient
471 console_->PrintLine("logged out... %s", strerror(error).c_str());
/external/strace/
H A Dstrace.c231 progname, strerror(errno));
242 progname, strerror(errno));
262 progname, strerror(errno));
282 progname, path, strerror(errno));
312 progname, strerror(errno));
328 progname, strerror(errno));
348 progname, strerror(errno));
353 progname, _PATH_BSHELL, strerror(errno));
1828 strerror(errno) function
2432 "failed: %s\n", strerror(errn
[all...]
/external/chromium_org/third_party/mongoose/
H A Dmongoose.c78 #define strerror(x) _ultoa(x, (char *) _alloca(sizeof(x) *3 ), 10) macro
1241 cry(fc(ctx), "%s: %s", __func__, strerror(retval));
1258 send_http_error(conn, 500, http_500_error, "fork(): %s", strerror(ERRNO));
1262 cry(conn, "%s: chdir(%s): %s", __func__, dir, strerror(ERRNO));
1264 cry(conn, "%s: dup2(%d, 0): %s", __func__, fd_stdin, strerror(ERRNO));
1266 cry(conn, "%s: dup2(%d, 1): %s", __func__, fd_stdout, strerror(ERRNO));
1276 cry(conn, "%s: execle(%s): %s", __func__, prog, strerror(ERRNO));
1280 strerror(ERRNO));
1585 cry(conn, "%s: gethostbyname(%s): %s", __func__, host, strerror(ERRNO));
1587 cry(conn, "%s: socket: %s", __func__, strerror(ERRN
[all...]

Completed in 659 milliseconds