Searched refs:sys_nerr (Results 1 - 25 of 64) sorted by relevance

123

/macosx-10.10.1/uucp-11/uucp/unix/
H A Dstrerr.c8 #ifndef sys_nerr
9 extern int sys_nerr;
21 if (ierr >= 0 && ierr < sys_nerr)
/macosx-10.10.1/lukemftp-14/tnftp/libnetbsd/
H A Dstrerror.c10 extern int sys_nerr;
13 if (n >= sys_nerr) {
/macosx-10.10.1/ruby-106/ruby/missing/
H A Dstrerror.c5 extern int sys_nerr;
13 if (error <= sys_nerr && error > 0) {
/macosx-10.10.1/Libc-1044.1.2/gen/
H A Derrlst.c191 const int sys_nerr = sizeof(sys_errlist) / sizeof(sys_errlist[0]); variable
/macosx-10.10.1/Heimdal-398.1.2/lib/roken/
H A Dstrerror.c40 extern int sys_nerr;
48 if(eno < 0 || eno >= sys_nerr)
/macosx-10.10.1/gnutar-453/gnutar/lib/
H A Dstrerror.c33 extern int sys_nerr;
42 if (n < 0 || n >= sys_nerr)
/macosx-10.10.1/groff-38/groff/src/libs/libgroff/
H A Dstrerror.c32 extern int sys_nerr;
42 if (n >= 0 && n < sys_nerr && sys_errlist[n] != 0)
/macosx-10.10.1/libiconv-42/libiconv/srclib/
H A Dstrerror.c35 extern int sys_nerr;
44 if (n < 0 || n >= sys_nerr)
/macosx-10.10.1/ntp-92/libntp/
H A Dbsd_strerror.c37 extern int sys_nerr;
41 if ((unsigned int)errnum < sys_nerr)
/macosx-10.10.1/sudo-73/src/
H A Dstrerror.c37 extern int sys_nerr;
40 if (n > 0 && n < sys_nerr)
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/include/ac/
H A Derrno.h28 # define sys_nerr 0 macro
32 LDAP_LIBC_V(int) sys_nerr;
41 # define STRERROR(e) ( (e) > -1 && (e) < sys_nerr \
/macosx-10.10.1/bash-94.1.2/bash-3.2/CWRU/misc/
H A Derrlist.c28 extern int sys_nerr;
38 for (i = 1; i < sys_nerr; i++)
/macosx-10.10.1/bind9-45.101/bind9/contrib/nslint-2.1a3/
H A Dstrerror.c51 extern int sys_nerr;
60 if (errnum < sys_nerr)
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/sh/
H A Dstrerror.c57 extern int sys_nerr;
60 if (e > 0 && e < sys_nerr)
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/string/
H A Dstrerror.c46 #if !defined(sys_nerr) && !_def_errno_sys_nerr
48 extern int sys_nerr;
51 int sys_nerr = 0; variable
78 if (err > 0 && err <= sys_nerr)
/macosx-10.10.1/pdisk-9/
H A Derrors.c67 extern int sys_nerr;
146 if (value > 0 && value < sys_nerr) {
175 if (value > 0 && value < sys_nerr) {
/macosx-10.10.1/bind9-45.101/bind9/lib/isc/unix/
H A Dstrerror.c43 extern const int sys_nerr;
69 if (num >= 0 && num < sys_nerr)
/macosx-10.10.1/ntp-92/lib/isc/unix/
H A Dstrerror.c45 extern const int sys_nerr;
71 if (num >= 0 && num < sys_nerr)
/macosx-10.10.1/tcsh-65/tcsh/config/
H A Dhk6886 #define sys_nerr sys_ner
/macosx-10.10.1/uucp-11/uucp/uuconf/
H A Dsyshdr.h76 extern int sys_nerr;
80 ((ierr) >= 0 && (ierr) < sys_nerr ? sys_errlist[ierr] : "unknown error")
/macosx-10.10.1/cxxfilt-11/cxxfilt/libiberty/
H A Dstrerror.c13 #define sys_nerr sys_nerr__ macro
24 #undef sys_nerr macro
465 #define sys_nerr sys_nerr__ macro
467 static int sys_nerr; variable
472 extern int sys_nerr;
552 sys_nerr = num_error_names;
574 should check the size of the table (@code{sys_nerr}) before indexing
576 added to the table. Thus @code{sys_nerr} might be smaller than value
595 maxsize = MAX (sys_nerr, num_error_names);
607 external variables @code{sys_nerr} an
[all...]
/macosx-10.10.1/Libc-1044.1.2/stdio/FreeBSD/
H A Dxprintf_errno.c58 if (error >= 0 && error < sys_nerr) {
/macosx-10.10.1/tcl-105/tcl_ext/xotcl/xotcl/library/store/XOTclSdbm/
H A Dutil.c22 extern int sys_nerr;
31 if (errno > 0 && errno < sys_nerr)
/macosx-10.10.1/cron-39/lib/
H A Dcompat.c73 extern int sys_nerr;
76 if ((error <= sys_nerr) && (error > 0)) {
/macosx-10.10.1/lukemftp-14/tnftp/libedit/
H A Dsys.h128 extern int errno, sys_nerr;

Completed in 552 milliseconds

123