Searched refs:errno (Results 1 - 25 of 3821) sorted by relevance

1234567891011>>

/freebsd-9.3-release/contrib/libstdc++/include/c/
H A Dstd_cerrno.h34 * This is the C++ version of the Standard C Library header @c errno.h,
48 #include_next <errno.h>
51 #ifndef errno
52 #define errno errno macro
/freebsd-9.3-release/contrib/libstdc++/include/c_std/
H A Dstd_cerrno.h35 * This is the C++ version of the Standard C Library header @c errno.h,
50 #include <errno.h>
53 #ifndef errno
54 #define errno errno macro
/freebsd-9.3-release/sys/boot/efi/libefi/
H A Derrno.c36 int errno; local
40 errno = EPERM;
44 errno = EOVERFLOW;
49 errno = EIO;
53 errno = EINVAL;
57 errno = ESTALE;
61 errno = ENXIO;
65 errno = ENOENT;
69 errno = ENOMEM;
73 errno
[all...]
/freebsd-9.3-release/lib/libc/gen/
H A Derrno.c30 int errno; variable
H A Dpmadvise.c11 #include <errno.h>
18 saved_errno = errno;
20 ret = errno;
21 errno = saved_errno;
/freebsd-9.3-release/lib/libc/sys/
H A D__error.c33 extern int errno;
44 return(&errno);
/freebsd-9.3-release/contrib/groff/src/libs/libgroff/
H A Dgetcwd.c24 #include <errno.h>
33 errno = EINVAL;
38 int saved_errno = errno;
40 errno = 0;
42 if (errno == 0)
46 errno = saved_errno;
48 errno = ERANGE;
H A Dmatherr.c25 #include <errno.h>
36 errno = EDOM;
42 errno = ERANGE;
/freebsd-9.3-release/contrib/cvs/lib/
H A Dxgetwd.c23 #include <errno.h>
24 #ifndef errno
25 extern int errno;
36 Return NULL and set errno on error. */
45 errno = 0;
51 errno = 0;
52 while ((ret = getcwd (cwd, path_max)) == NULL && errno == ERANGE)
56 errno = 0;
61 int save_errno = errno;
63 errno
[all...]
H A Ddup2.c11 #include <errno.h>
22 register int save; /* for saving entry errno */
27 save = errno; /* save entry errno */
29 /* (may have just clobbered the original errno value) */
34 errno = save; /* restore entry errno */
36 if ( errno == EINVAL )
37 errno = EBADF; /* we think of everything */
/freebsd-9.3-release/crypto/openssh/openbsd-compat/
H A Dbsd-setres_id.c36 errno = ENOSYS;
41 saved_errno = errno;
42 error("setregid %u: %.100s", rgid, strerror(errno));
43 errno = saved_errno;
48 saved_errno = errno;
49 error("setegid %u: %.100s", (u_int)egid, strerror(errno));
50 errno = saved_errno;
54 saved_errno = errno;
55 error("setgid %u: %.100s", rgid, strerror(errno));
56 errno
[all...]
/freebsd-9.3-release/lib/libkse/sys/
H A Dthr_error.c36 #include <errno.h>
41 #undef errno macro
42 extern int errno;
50 return (&errno);
56 return (&errno);
/freebsd-9.3-release/lib/libthr/sys/
H A Dthr_error.c42 #undef errno macro
43 extern int errno;
55 return (&errno);
/freebsd-9.3-release/crypto/openssl/crypto/
H A DLPdir_nyi.c39 errno = EINVAL;
45 errno = EINVAL;
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/safety/
H A Dtst.errno.d31 * collect errno at every fbt probe and at every firing of a
37 @a[errno] = count();
42 @a[errno] = count();
/freebsd-9.3-release/lib/libkse/thread/
H A Dthr_seterrno.c41 #ifdef errno
42 #undef errno; macro
44 extern int errno;
54 errno = error;
/freebsd-9.3-release/lib/libstand/
H A Dfstat.c47 errno = EBADF;
53 errno = EOPNOTSUPP;
57 errno = (f->f_ops->fo_stat)(f, sb);
58 if (errno)
H A Dioctl.c77 errno = EBADF;
81 errno = (f->f_dev->dv_ioctl)(f, cmd, arg);
82 if (errno)
86 errno = EIO;
H A Dreaddir.c40 errno = EBADF;
44 errno = EIO;
47 errno = (f->f_ops->fo_readdir)(f, &dir);
48 if (errno)
/freebsd-9.3-release/cddl/contrib/opensolaris/lib/pyzfs/common/
H A Dutil.py29 import errno
35 errno.ECANCELED = 47
36 errno.ENOTSUP = 48
62 errno -- the error number (eg, from ioctl(2))."""
64 __slots__ = "why", "task", "errno"
69 eno -- the error number (errno)
74 self.errno = eno
89 errno.EPERM: _("permission denied"),
90 errno.ECANCELED:
92 errno
[all...]
/freebsd-9.3-release/contrib/tcp_wrappers/
H A Dpercent_m.c12 #include <errno.h>
15 extern int errno;
32 if (errno < sys_nerr && errno > 0) {
33 strcpy(bp, sys_errlist[errno]);
35 sprintf(bp, "Unknown error %d", errno);
/freebsd-9.3-release/crypto/openssh/
H A Dsshconnect.h62 int save_errno = errno; \
65 strerror(errno)); \
66 errno = save_errno; \
70 int save_errno = errno; \
73 strerror(errno)); \
74 errno = save_errno; \
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/
H A Dtst.errno1.d31 * To print errno and make sure it succeeds.
41 printf("the errno = %d\n", errno);
/freebsd-9.3-release/contrib/tcpdump/missing/
H A Dinet_pton.c48 #include <errno.h>
54 errno = EAFNOSUPPORT;
/freebsd-9.3-release/lib/libc/posix1e/
H A Dacl_size.c35 #include <errno.h>
41 errno = ENOSYS;

Completed in 268 milliseconds

1234567891011>>