Searched refs:errno (Results 26 - 50 of 1885) sorted by relevance

1234567891011>>

/osnet-11/usr/src/grub/grub2/grub-core/gnulib/
H A Dwcrtomb.c23 #include <errno.h>
34 errno = EINVAL;
49 errno = EILSEQ;
H A Dmalloc.c34 #include <errno.h>
56 errno = ENOMEM;
/osnet-11/usr/src/lib/libast/common/misc/
H A Dproclib.h34 #include <errno.h>
60 #ifndef errno
61 extern int errno;
/osnet-11/usr/src/lib/libc/port/gen/
H A Dgetcwd.c31 * On error, a NULL pointer is returned and errno is set.
39 #include <errno.h>
48 errno = EINVAL;
54 errno = ENOMEM;
H A Dgetwd.c32 #include <errno.h>
49 if (errno == EACCES)
52 else if (errno == ERANGE)
H A Dstrerror.c36 #include <errno.h>
48 errno = EINVAL;
65 ret = errno = EINVAL;
73 ret = errno = ERANGE;
H A Dcalloc.c35 #include <errno.h>
53 errno = ENOMEM;
H A Dmkdtemp.c31 #include <errno.h>
54 if (errno != EEXIST)
H A Dposix_madvise.c32 #include <errno.h>
57 return (errno);
H A Dtcgetsid.c37 #include <errno.h>
49 errno = ENOTTY;
/osnet-11/usr/src/lib/libparted/common/lib/
H A Dcloseout.c23 #include <errno.h>
110 && !(ignore_EPIPE && errno == EPIPE))
114 error (0, errno, "%s: %s", quotearg_colon (file_name),
117 error (0, errno, "%s", write_error);
/osnet-11/usr/src/lib/libadm/common/
H A Ddevattr.c29 #include <errno.h>
60 * detected by this function, it sets "errno" to indicate the problem.
62 * "errno" Values:
77 errno = ENODEV;
103 errno = EINVAL;
108 errno = ENOMEM;
/osnet-11/usr/src/grub/grub2/grub-core/lib/posix_wrap/
H A Derrno.h24 #define errno grub_errno macro
/osnet-11/usr/src/cmd/sendmail/libsm/
H A Dmemstat.c15 #include <errno.h>
31 ** errno as error code, 0: ok
39 return (errno != 0) ? errno : -1;
50 ** errno as error code, 0: ok
81 return (errno != 0) ? errno : -1;
103 ** errno as error code, 0: ok
113 return (errno != 0) ? errno
[all...]
H A Drewind.c19 #include <errno.h>
45 errno = 0; /* not required, but seems reasonable */
/osnet-11/usr/src/lib/libast/common/comp/
H A Ddup2.c40 save_errno = errno;
42 errno = save_errno;
H A Dmkdir.c45 n = errno;
48 errno = EEXIST;
51 if (errno != ENOENT) return(-1);
52 errno = n;
H A Drmdir.c47 errno = ENOTDIR;
56 n = errno;
59 errno = n;
62 errno = EPERM;
/osnet-11/usr/src/lib/libcmdutils/common/
H A Dsysattrs.c35 #include <errno.h>
57 saveerrno = errno;
60 errno = saveerrno;
80 errno = ENOENT;
85 errno = EINVAL;
89 errno = 0;
115 errno = 0;
118 errno = EINVAL;
121 if (((rc = pathconf(file, name)) == 1) || (errno != EINVAL)) {
/osnet-11/usr/src/cmd/sendmail/db/os/
H A Dos_unlink.c17 #include <errno.h>
38 return (ret == -1 ? errno : 0);
/osnet-11/usr/src/lib/libast/common/path/
H A Dpathstat.c38 oerrno = errno;
40 errno = oerrno;
/osnet-11/usr/src/lib/libc/port/sys/
H A Dsiginterrupt.c31 #include <errno.h>
43 errno = EINVAL;
/osnet-11/usr/src/lib/libdhcpsvc/modules/binfiles/
H A Dgeneral.c42 #include <errno.h>
59 if (errno == ENOENT)
61 return (syserr_to_dsvcerr(errno));
78 switch (errno) {
104 return (syserr_to_dsvcerr(errno));
/osnet-11/usr/src/lib/libdhcpsvc/modules/files/
H A Dgeneral.c46 #include <errno.h>
64 if (errno == ENOENT)
66 return (syserr_to_dsvcerr(errno));
83 switch (errno) {
109 return (syserr_to_dsvcerr(errno));
/osnet-11/usr/src/lib/libc/i386/sys/
H A Dxstat.c38 #include <errno.h>
46 errno = EINVAL;
56 errno = EINVAL;
66 errno = EINVAL;
76 errno = EINVAL;

Completed in 2814 milliseconds

1234567891011>>