HomeSort by: relevance | last modified time | path
    Searched defs:strerror (Results 1 - 25 of 104) sorted by relevancy

1 2 3 4 5

  /src/distrib/utils/libhack/
strerror.c 1 /* $NetBSD: strerror.c,v 1.3 2003/08/07 09:27:58 agc Exp $ */
41 strerror(num) function
  /src/crypto/external/bsd/heimdal/dist/lib/roken/
strerror.c 1 /* $NetBSD: strerror.c,v 1.2 2017/01/28 21:31:50 christos Exp $ */
46 strerror(int eno) function
  /src/external/bsd/am-utils/dist/libamu/
strerror.c 1 /* $NetBSD: strerror.c,v 1.1.1.3 2015/01/17 16:34:18 christos Exp $ */
39 * File: am-utils/libamu/strerror.c
54 strerror(int errnum) function
64 return "unknown (strerror not available)";
  /src/external/bsd/ntp/dist/libntp/
bsd_strerror.c 24 static const char sccsid[] = "@(#)strerror.c 5.1 (Berkeley) 4/9/89";
35 strerror( function
  /src/external/gpl2/gettext/dist/gettext-runtime/gnulib-lib/
strerror.c 0 /* strerror.c --- ANSI C compatible system error routine
29 implementations define strerror and they don't need this strerror
37 strerror (int n) function
  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
strerror.c 0 /* strerror.c --- ANSI C compatible system error routine
29 implementations define strerror and they don't need this strerror
37 strerror (int n) function
  /src/external/gpl2/grep/dist/
configure 5715 for ac_func in btowc isascii memmove setmode strerror wctype mbrtowc
6277 echo "$as_me:$LINENO: checking for strerror in -lcposix" >&5
6278 echo $ECHO_N "checking for strerror in -lcposix... $ECHO_C" >&6
6294 char strerror ();
6304 strerror (); function
8433 for ac_func in strerror strerror_r vprintf doprnt
  /src/external/gpl2/groff/dist/src/libs/libgroff/
strerror.c 1 /* $NetBSD: strerror.c,v 1.1.1.1 2016/01/13 18:41:48 christos Exp $ */
40 char *strerror(n) function
  /src/external/gpl2/texinfo/dist/lib/
strerror.c 1 /* $NetBSD: strerror.c,v 1.1.1.1 2016/01/14 00:11:29 christos Exp $ */
3 /* strerror.c --- ANSI C compatible system error routine
31 implementations define strerror and they don't need this strerror
39 strerror (int n) function
  /src/external/gpl2/xcvs/dist/lib/
strerror.c 0 /* strerror.c --- ANSI C compatible system error routine
20 __RCSID("$NetBSD: strerror.c,v 1.2 2016/05/17 14:00:09 christos Exp $");
32 implementations define strerror and they don't need this strerror
40 strerror (int n) function
  /src/external/gpl2/texinfo/dist/
configure 3425 echo "$as_me:$LINENO: checking for library containing strerror" >&5
3426 echo $ECHO_N "checking for library containing strerror... $ECHO_C" >&6
3445 char strerror ();
3449 strerror (); function
3500 char strerror ();
3504 strerror (); function
5161 echo "$as_me:$LINENO: checking whether strerror is declared" >&5
5162 echo $ECHO_N "checking whether strerror is declared... $ECHO_C" >&6
5176 #ifndef strerror
5177 char *p = (char *) strerror;
    [all...]
  /src/sys/lib/libsa/
strerror.c 1 /* $NetBSD: strerror.c,v 1.20 2007/11/24 13:20:57 isaki Exp $ */
61 strerror(int err) function
  /src/external/gpl2/diffutils/dist/
configure 2560 echo "$as_me:$LINENO: checking for strerror in -lcposix" >&5
2561 echo $ECHO_N "checking for strerror in -lcposix... $ECHO_C" >&6
2577 char strerror ();
2587 strerror (); function
6651 sigaction sigprocmask strchr strerror tmpnam
9812 for ac_func in strerror vprintf doprnt
9887 echo "$as_me:$LINENO: checking whether strerror is declared" >&5
9888 echo $ECHO_N "checking whether strerror is declared... $ECHO_C" >&6
9905 #ifndef strerror
9906 char *p = (char *) strerror;
    [all...]
  /src/external/gpl3/gdb/dist/gnulib/import/
strerror.c 0 /* 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 if they care about thread-safety. *
    [all...]
strerror_r.c 35 #include "strerror-override.h"
52 /* Use the system's strerror(). Exclude glibc and cygwin because the
54 strerror_r clobbers strerror. */
55 # undef strerror macro
90 /* This lock protects the buffer returned by strerror(). We assume that
91 no other uses of strerror() exist in the program. */
249 /* Try to do what strerror (errnum) does, but without clobbering the
250 buffer used by strerror(). */
293 /* For a valid error number, the system's strerror() function returns
297 char *errmsg = strerror (errnum)
    [all...]
  /src/external/gpl3/gdb.old/dist/gnulib/import/
strerror.c 0 /* 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 if they care about thread-safety. *
    [all...]
strerror_r.c 35 #include "strerror-override.h"
52 /* Use the system's strerror(). Exclude glibc and cygwin because the
54 strerror_r clobbers strerror. */
55 # undef strerror macro
90 /* This lock protects the buffer returned by strerror(). We assume that
91 no other uses of strerror() exist in the program. */
249 /* Try to do what strerror (errnum) does, but without clobbering the
250 buffer used by strerror(). */
293 /* For a valid error number, the system's strerror() function returns
297 char *errmsg = strerror (errnum)
    [all...]
  /src/sys/arch/i386/stand/lib/test/
sanamespace.h 18 #undef strerror macro
  /src/external/cddl/osnet/dist/lib/pyzfs/common/
util.py 72 strerror(eno))"""
85 s += self.strerror
111 def strerror(self): member in class:ZFSError
112 return ZFSError.__strs.get(self.errno, os.strerror(self.errno))
  /src/external/gpl2/gmake/dist/
configure 3451 echo "$as_me:$LINENO: checking for library containing strerror" >&5
3452 echo $ECHO_N "checking for library containing strerror... $ECHO_C" >&6
3471 char strerror ();
3475 strerror (); function
3525 char strerror ();
3529 strerror (); function
8243 getrlimit setrlimit setvbuf pipe strerror strsignal \
  /src/external/gpl2/texinfo/dist/util/
deref.c 47 extern char *strerror(int errno);
85 *argv, strerror(errno));
197 /* strerror --- return error string, delete if in your library */
200 strerror(int errno) function
  /src/external/gpl2/grep/dist/lib/
error.c 106 # ifndef strerror /* On some systems, strerror is a macro */
107 char *strerror ();
121 # define strerror private_strerror macro
181 fprintf (stderr, ": %s", strerror (errnum));
264 fprintf (stderr, ": %s", strerror (errnum));
  /src/external/mpl/dhcp/dist/omapip/
errwarn.c 199 m = strerror (errno);
230 char *strerror (err) function
  /src/external/bsd/ntp/dist/include/
ntp_stdlib.h 290 /* lib/isc/win32/strerror.c
293 * particularly reference clocks, we hijack calls to strerror() to deal
300 #define strerror(e) ntp_strerror(e) macro
  /src/external/gpl2/diffutils/dist/lib/
error.c 119 char *strerror ();
132 # define strerror private_strerror macro
153 s = strerror (errnum);

Completed in 76 milliseconds

1 2 3 4 5