Searched refs:error (Results 101 - 125 of 6539) sorted by relevance

1234567891011>>

/freebsd-current/sys/kern/
H A Dkern_priv.c70 int error, enabled; local
74 error = sysctl_handle_int(oidp, &enabled, 0, req);
75 if (error || !req->newptr)
76 return (error);
101 int error; local
104 error = mac_priv_check(cred, priv);
106 error = 0;
108 return (error);
112 priv_check_cred_post(struct ucred *cred, int priv, int error, bool handled) argument
123 error
150 int error; local
279 int error; local
299 int error; local
314 int error; local
329 int error; local
354 int error; local
[all...]
/freebsd-current/contrib/kyua/admin/
H A Dcheck-style-man.awk31 error = 1
36 error = 0
69 if (error)
/freebsd-current/crypto/openssh/openbsd-compat/
H A Dstrtonum.c39 int error = 0; local
53 error = INVALID;
57 error = INVALID;
59 error = TOOSMALL;
61 error = TOOLARGE;
64 *errstrp = ev[error].errstr;
65 errno = ev[error].err;
66 if (error)
/freebsd-current/contrib/mandoc/
H A Dcompat_strtonum.c35 int error = 0; local
50 error = INVALID;
54 error = INVALID;
56 error = TOOSMALL;
58 error = TOOLARGE;
61 *errstrp = ev[error].errstr;
62 errno = ev[error].err;
63 if (error)
/freebsd-current/contrib/llvm-project/lldb/source/Host/posix/
H A DHostProcessPosix.cpp33 Status error; local
34 error.SetErrorString("HostProcessPosix refers to an invalid process");
35 return error;
42 Status error; local
45 error.SetErrorToErrno();
47 return error;
59 Status error = Signal(0);
60 return error.Success();
/freebsd-current/sys/security/mac/
H A Dmac_kdb.c45 int error = 0; local
48 return (error);
54 int error = 0; local
57 return (error);
63 int error = 0; local
66 return (error);
73 int error = 0; local
77 return (error);
/freebsd-current/contrib/arm-optimized-routines/string/aarch64/
H A Dcheck-arch.S9 # error ARCH setting does not match the compiler.
/freebsd-current/contrib/arm-optimized-routines/string/arm/
H A Dcheck-arch.S9 # error ARCH setting does not match the compiler.
/freebsd-current/contrib/arm-optimized-routines/string/x86_64/
H A Dcheck-arch.S9 # error ARCH setting does not match the compiler.
/freebsd-current/sys/dev/dialog/da9063/
H A Dda9063_iic.c77 int error; local
84 error = iicdev_readfrom(sc->dev, DA9063_PAGE_CON, &reg, 1, IIC_WAIT);
85 if (error != 0)
86 return (iic2errno(error));
93 error = iicdev_writeto(sc->dev, DA9063_PAGE_CON, &reg, 1, IIC_WAIT);
94 if (error != 0)
95 return (iic2errno(error));
106 int error; local
112 error = da9063_iic_select_page(sc, DA9063_IIC_PAGE(addr));
113 if (error !
131 int error; local
158 int error; local
208 int error; local
231 int error; local
[all...]
/freebsd-current/sys/arm64/include/
H A Dpcpu_aux.h39 #error "Not for userspace"
43 #error "Do not include machine/pcpu_aux.h directly"
/freebsd-current/sys/riscv/include/
H A Dpcpu_aux.h35 #error "Not for userspace"
39 #error "Do not include machine/pcpu_aux.h directly"
/freebsd-current/contrib/unifdef/tests/
H A Dif1-k.c23 #error FOO not defined
31 #error FOO not defined
H A Dif1-kDU.c23 #error FOO not defined
31 #error FOO not defined
H A Dif1.c11 #error FOO not defined
19 #error FOO not defined
H A Dif3-k.c23 #error BAR defined
H A Dif3-kDU.c23 #error BAR defined
/freebsd-current/lib/libc/stdlib/
H A Dstrtonum.c33 int error = 0; local
48 error = INVALID;
52 error = INVALID;
54 error = TOOSMALL;
56 error = TOOLARGE;
59 *errstrp = ev[error].errstr;
60 errno = ev[error].err;
61 if (error)
/freebsd-current/lib/libsysdecode/
H A Derrno.c41 sysdecode_abi_to_freebsd_errno(enum sysdecode_abi abi, int error) argument
47 return (error);
58 if (error == linux_errtbl[i])
71 sysdecode_freebsd_to_abi_errno(enum sysdecode_abi abi, int error) argument
77 return (error);
81 if (error >= 0 && error <= ELAST)
82 return (linux_errtbl[error]);
/freebsd-current/tools/test/stress2/misc/
H A Dpthread8.sh67 int error;
73 error = pthread_mutex_lock(l);
74 if (error != 0)
75 errc(1, error, "pthread_mutex_lock");
80 error = pthread_mutex_unlock(l);
81 if (error != 0)
82 errc(1, error, "pthread_mutex_lock");
97 int error;
101 error = sysctlbyname("hw.ncpu", &ncpus, &ncpus_len, NULL, 0);
102 if (error !
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_init_standalone.cpp15 # error "UBSan is not supported on this platform!"
/freebsd-current/contrib/llvm-project/clang/lib/Headers/
H A Ds390intrin.h14 #error "<s390intrin.h> is for s390 only"
/freebsd-current/contrib/llvm-project/compiler-rt/lib/interception/
H A Dinterception_mac.h17 # error "interception_mac.h should be included from interception.h only"
/freebsd-current/lib/csu/common/
H A Dcsu_common.h36 #error "Include this file only once"
/freebsd-current/usr.bin/localedef/bootstrap/
H A Dlimits.h39 #error "COLL_WEIGHTS_MAX missing"

Completed in 135 milliseconds

1234567891011>>