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

1234567891011>>

/freebsd-12-stable/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-12-stable/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-12-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator_checks.cpp19 errno = errno_ENOMEM;
H A Dsanitizer_syscall_generic.inc33 *rverrno = errno;
/freebsd-12-stable/contrib/mandoc/
H A Dtest-EFTYPE.c1 #include <errno.h>
/freebsd-12-stable/lib/libc/gen/
H A Derrno.c32 int errno; variable
H A Dnice.c39 #include <errno.h>
50 saverrno = errno;
51 errno = 0;
53 if (prio == -1 && errno != 0)
56 if (errno == EACCES)
57 errno = EPERM;
60 errno = saverrno;
H A Dpmadvise.c11 #include <errno.h>
18 saved_errno = errno;
20 ret = errno;
21 errno = saved_errno;
/freebsd-12-stable/cddl/lib/libdtrace/
H A Derrno.d244 * Error strings from <sys/errno.h>
247 inline string strerror[int errno] =
248 errno == 0 ? "Success" :
249 errno == EPERM ? "Operation not permitted" :
250 errno == ENOENT ? "No such file or directory" :
251 errno == ESRCH ? "No such process" :
252 errno == EINTR ? "Interrupted system call" :
253 errno == EIO ? "Input/output error" :
254 errno == ENXIO ? "Device not configured" :
255 errno
[all...]
/freebsd-12-stable/crypto/openssh/openbsd-compat/
H A Dbsd-setres_id.c34 errno = ENOSYS;
39 saved_errno = errno;
40 error("setregid %u: %.100s", rgid, strerror(errno));
41 errno = saved_errno;
46 saved_errno = errno;
47 error("setegid %u: %.100s", (u_int)egid, strerror(errno));
48 errno = saved_errno;
52 saved_errno = errno;
53 error("setgid %u: %.100s", rgid, strerror(errno));
54 errno
[all...]
/freebsd-12-stable/stand/efi/libefi/
H A Derrno.c34 errno_to_efi_status(int errno) argument
38 switch (errno) {
99 int errno; local
103 errno = EPERM;
107 errno = EOVERFLOW;
112 errno = EIO;
116 errno = EINVAL;
120 errno = ESTALE;
124 errno = ENXIO;
128 errno
[all...]
/freebsd-12-stable/contrib/elftoolchain/libpe/
H A Dpe_cntl.c27 #include <errno.h>
38 errno = EINVAL;
49 errno = EACCES;
57 errno = EINVAL;
/freebsd-12-stable/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-12-stable/stand/libsa/
H A Dfstat.c47 errno = EBADF;
53 errno = EOPNOTSUPP;
57 errno = (f->f_ops->fo_stat)(f, sb);
58 if (errno)
/freebsd-12-stable/usr.sbin/pw/
H A Dstrtounum.c30 #include <errno.h>
46 errno = EINVAL;
50 errno = 0;
53 errno = EINVAL;
58 errno = ERANGE;
62 if (errno == ERANGE || ret > maxval) {
63 errno = ERANGE;
/freebsd-12-stable/contrib/elftoolchain/libelftc/
H A Delftc_timestamp.c30 #include <errno.h>
42 errno = 0;
45 errno = EINVAL;
47 errno = ERANGE;
48 if (errno != 0)
/freebsd-12-stable/cddl/contrib/opensolaris/lib/pyzfs/common/
H A Dutil.py29 import errno namespace
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-12-stable/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-12-stable/tests/sys/cddl/zfs/tests/exec/
H A Dmmap_exec.c35 #include <errno.h>
37 extern int errno;
52 errno = 0;
56 return (errno);
60 return (errno);
66 return (errno);
/freebsd-12-stable/contrib/apr/threadproc/unix/
H A Dprocsup.c22 return errno;
49 return errno;
53 return errno;
59 return errno;
65 return errno;
73 return errno;
80 return errno;
95 errno = ECHILD;
/freebsd-12-stable/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-12-stable/lib/libc/sys/
H A D__error.c37 extern int errno;
43 return (&errno);
/freebsd-12-stable/sys/compat/linux/
H A Dlinux_errno.c4 #include <sys/errno.h>
/freebsd-12-stable/lib/libnv/
H A Dcommon_impl.h37 #include <errno.h>
45 return (fcntl(fd, F_GETFD) != -1 || errno != EBADF);
/freebsd-12-stable/lib/libutil/
H A Dexpand_number.c35 #include <errno.h>
49 serrno = errno;
50 errno = 0;
53 errno = ERANGE;
54 if (errno != 0)
56 errno = serrno;
84 errno = EINVAL;
90 errno = ERANGE;

Completed in 497 milliseconds

1234567891011>>