Home
last modified time | relevance | path

Searched refs:sys_nerr (Results 1 – 23 of 23) sorted by relevance

/freebsd-13.1/contrib/netbsd-tests/lib/libc/string/
H A Dt_strerror.c51 for (i = 1; i < sys_nerr; i++) in ATF_TC_BODY()
54 for (; i < sys_nerr + 10; i++) in ATF_TC_BODY()
89 for (i = 1; i < sys_nerr; i++) { in ATF_TC_BODY()
94 for (; i < sys_nerr + 10; i++) { in ATF_TC_BODY()
/freebsd-13.1/contrib/sendmail/libsm/
H A Dstrerror.c31 extern int sys_nerr;
52 if (err >= 0 && err < sys_nerr)
/freebsd-13.1/contrib/ntp/libntp/
H A Dbsd_strerror.c37 extern int sys_nerr; in strerror()
41 if ((unsigned int)errnum < sys_nerr) in strerror()
/freebsd-13.1/crypto/heimdal/lib/roken/
H A Dstrerror.c40 extern int sys_nerr;
48 if(eno < 0 || eno >= sys_nerr) in strerror()
/freebsd-13.1/contrib/tcp_wrappers/
H A Dpercent_m.c18 extern int sys_nerr;
32 if (errno < sys_nerr && errno > 0) {
H A Dtli-sequent.c35 extern int sys_nerr;
160 if (errno < 0 || errno >= sys_nerr) { in tli_error()
H A Dtli.c46 extern int sys_nerr;
339 if (errno < 0 || errno >= sys_nerr) { in tli_error()
/freebsd-13.1/lib/libc/gen/
H A Derrlst.c221 const int sys_nerr = ELAST + 1; variable
225 __strong_reference(sys_nerr, __hidden_sys_nerr);
H A DSymbol.map105 sys_nerr;
/freebsd-13.1/contrib/ntp/lib/isc/unix/
H A Dstrerror.c45 extern const int sys_nerr;
71 if (num >= 0 && num < sys_nerr) in isc__strerror()
/freebsd-13.1/usr.sbin/cron/lib/
H A Dcompat.c61 extern int sys_nerr;
64 if ((error <= sys_nerr) && (error > 0)) {
/freebsd-13.1/lib/libc/include/
H A Derrlst.h42 #define __hidden_sys_nerr sys_nerr
/freebsd-13.1/contrib/less/
H A Dos.c265 extern int sys_nerr;
267 if (err < sys_nerr)
/freebsd-13.1/crypto/openssh/openbsd-compat/
H A Dbsd-misc.c99 extern int sys_nerr; in strerror()
102 if ((e >= 0) && (e < sys_nerr)) in strerror()
/freebsd-13.1/contrib/sendmail/src/
H A Derr.c1095 extern int sys_nerr;
1120 if (errnum >= 0 && errnum < sys_nerr)
1260 if (errnum > 0 && errnum < sys_nerr)
/freebsd-13.1/contrib/bmake/
H A Dutil.c19 extern int errno, sys_nerr;
26 if (e < 0 || e >= sys_nerr) { in strerror()
/freebsd-13.1/lib/libc/string/
H A DMakefile.inc71 strerror.3 sys_nerr.3
/freebsd-13.1/include/
H A Dstdio.h405 extern const int sys_nerr;
/freebsd-13.1/contrib/tcsh/
H A Dtc.os.c1122 extern int sys_nerr;
1127 if (i >= 0 && i < sys_nerr) { in xstrerror()
/freebsd-13.1/contrib/libpcap/
H A Dpcap.c3460 extern int sys_nerr;
3464 if ((unsigned int)errnum < sys_nerr)
/freebsd-13.1/contrib/sendmail/include/sm/
H A Dconf.h2438 # define sys_nerr __sys_nerr macro
/freebsd-13.1/crypto/openssh/
H A Dconfigure.ac4543 AC_CACHE_CHECK([if libc defines sys_nerr], ac_cv_libc_defines_sys_nerr, [
4545 [[ extern int sys_nerr; printf("%i", sys_nerr);]])],
4551 AC_DEFINE([HAVE_SYS_NERR], [1], [Define if your system defines sys_nerr])
/freebsd-13.1/libexec/rtld-elf/
H A Drtld.c6267 if (errnum < 0 || errnum >= sys_nerr) in rtld_strerror()