Searched defs:strerror (Results 1 - 15 of 15) 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/iptables/include/libiptc/
H A Dxtcshared.h17 const char *(*strerror)(int); member in struct:xtc_ops
/external/libxml2/win32/wince/
H A Dwincecompat.c62 char *strerror(int errnum) function
/external/linux-tools-perf/src/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
H A DUtil.py82 def strerror(nr): function
/external/valgrind/coregrind/
H A Dm_syscall.c932 const HChar* VG_(strerror) ( UWord errnum ) function
975 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/openssh/openbsd-compat/
H A Dbsd-misc.c95 const char *strerror(int e) function
/external/mksh/src/
H A Dshf.c1073 #undef strerror macro
1074 return (strerror(errnum));
1075 #define strerror dontuse_strerror /* poisoned */ macro
H A Dsh.h392 #undef strerror macro
393 #define strerror /* poisoned */ dontuse_strerror macro
397 #define cstrerror(errnum) ((const char *)strerror(errnum))
/external/strace/
H A Dstrace.c183 strerror(int err_no) function
277 fprintf(stderr, "%s: %s: %s\n", progname, msg, strerror(err_no));
286 fprintf(stderr, ": %s\n", strerror(err_no));
397 tprintf(" <ptrace(%s):%s>\n", msg, strerror(err));
/external/pcre/dist/
H A Dpcregrep.c824 * Provide strerror() for non-ANSI libraries *
827 /* Some old-fashioned systems still around (e.g. SunOS4) don't have strerror()
835 strerror(int n) function
2147 pathname, strerror(errno));
2193 strerror(errno));
2248 strerror(errno));
2287 strerror(errno));
2533 fprintf(stderr, "pcregrep: Failed to open %s: %s\n", name, strerror(errno));
3223 strerror(errno));
H A Dpcretest.c1498 * Provide strerror() for non-ANSI libraries *
1501 /* Some old-fashioned systems still around (e.g. SunOS4) don't have strerror()
1509 strerror(int n) function
3544 fprintf(outfile, "Failed to open %s: %s\n", p, strerror(errno));
4408 fprintf(outfile, "Unable to open %s: %s\n", to_file, strerror(errno));
4427 fprintf(outfile, "Write error on %s: %s\n", to_file, strerror(errno));
4441 strerror(errno));

Completed in 2075 milliseconds