Searched refs:error (Results 1 - 25 of 6077) sorted by relevance

1234567891011>>

/freebsd-13-stable/crypto/openssl/include/openssl/
H A Dasn1_mac.h10 #error "This file is obsolete; please update your software."
/freebsd-13-stable/sys/netinet6/
H A Dicmp6.h4 #error "netinet6/icmp6.h is obsolete. use netinet/icmp6.h"
H A Dip6.h4 #error "netinet6/ip6.h is obsolete. use netinet/ip6.h"
/freebsd-13-stable/include/
H A Dvarargs.h34 #error "<varargs.h> is obsolete."
35 #error "Change your code to use <stdarg.h> instead."
/freebsd-13-stable/contrib/llvm-project/clang/lib/Headers/
H A Dvarargs.h11 #error "Please use <stdarg.h> instead of <varargs.h>"
/freebsd-13-stable/sys/dev/sfxge/common/
H A Defx_check.h47 # error "FALCON is obsolete and is not supported."
53 # error "BOOTCFG requires NVRAM"
61 # error "CHECK_REG requires SIENA or HUNTINGTON or MEDFORD or MEDFORD2"
68 # error "INTR_FATAL requires SIENA"
76 # error "DIAG requires SIENA or HUNTINGTON or MEDFORD or MEDFORD2"
84 # error "EV_PREFETCH requires SIENA or HUNTINGTON or MEDFORD or MEDFORD2"
89 # error "FALCON_NIC_CFG_OVERRIDE is obsolete and is not supported."
96 # error "FILTER requires SIENA or HUNTINGTON or MEDFORD or MEDFORD2"
102 # error "HUNTINGTON or MEDFORD or MEDFORD2 requires FILTER"
110 # error "LOOPBAC
[all...]
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pragma/
H A Derr.D_PRAGERR.d37 #pragma D error "this is an error message"
/freebsd-13-stable/contrib/kyua/utils/text/
H A Dexceptions.hpp42 class error : public std::runtime_error { class in namespace:utils::text
44 explicit error(const std::string&);
45 ~error(void) throw();
49 /// Exception denoting an error in a regular expression.
50 class regex_error : public error {
57 /// Exception denoting an error while parsing templates.
58 class syntax_error : public error {
65 /// Exception denoting an error in a text value format.
66 class value_error : public error {
/freebsd-13-stable/contrib/openbsm/bin/auditdistd/
H A Dsynch.h51 int error; local
53 error = pthread_mutex_init(lock, NULL);
54 PJDLOG_ASSERT(error == 0);
59 int error; local
61 error = pthread_mutex_destroy(lock);
62 PJDLOG_ASSERT(error == 0);
67 int error; local
69 error = pthread_mutex_lock(lock);
70 PJDLOG_ASSERT(error == 0);
75 int error; local
84 int error; local
99 int error; local
107 int error; local
115 int error; local
123 int error; local
131 int error; local
141 int error; local
157 int error; local
166 int error; local
191 int error; local
199 int error; local
[all...]
/freebsd-13-stable/sbin/hastd/
H A Dsynch.h53 int error; variable
55 error = pthread_mutex_init(lock, NULL);
56 PJDLOG_ASSERT(error == 0);
61 int error; variable
63 error = pthread_mutex_destroy(lock);
64 PJDLOG_ASSERT(error == 0);
69 int error; variable
71 error = pthread_mutex_lock(lock);
72 PJDLOG_ASSERT(error == 0);
77 int error; local
86 int error; variable
101 int error; variable
109 int error; variable
117 int error; variable
125 int error; variable
133 int error; variable
143 int error; local
157 int error; variable
167 int error; variable
184 int error; local
192 int error; local
[all...]
/freebsd-13-stable/tools/regression/priv/
H A Dpriv_cred.c60 int error; local
62 error = setuid(UID_OTHER);
64 expect("priv_setuid(asroot, injail)", error, 0, 0);
66 expect("priv_setuid(asroot, !injail)", error, 0, 0);
68 expect("priv_setuid(!asroot, injail)", error, -1, EPERM);
70 expect("priv_setuid(!asroot, !injail)", error, -1, EPERM);
76 int error; local
78 error = seteuid(UID_OTHER);
80 expect("priv_seteuid(asroot, injail)", error, 0, 0);
82 expect("priv_seteuid(asroot, !injail)", error,
92 int error; local
108 int error; local
127 int error; local
143 int error; local
159 int error; local
175 int error; local
191 int error; local
[all...]
/freebsd-13-stable/contrib/kyua/utils/config/
H A Dexceptions.hpp45 class error : public std::runtime_error { class in namespace:utils::config
47 explicit error(const std::string&);
48 ~error(void) throw();
53 class bad_combination_error : public error {
62 class invalid_key_error : public error {
70 class invalid_key_value : public error {
78 class syntax_error : public error {
86 class unknown_key_error : public error {
95 class value_error : public error {
/freebsd-13-stable/contrib/kyua/model/
H A Dexceptions.hpp46 class error : public std::runtime_error { class in namespace:model
48 explicit error(const std::string&);
49 virtual ~error(void) throw();
54 class format_error : public error {
62 class not_found_error : public error {
H A Dexceptions.cpp34 /// Constructs a new error with a plain-text message.
36 /// \param message The plain-text error message.
37 model::error::error(const std::string& message) : function in class:model::error
43 /// Destructor for the error.
44 model::error::~error(void) throw()
51 /// \param message The plain-text error message.
53 error(message)
58 /// Destructor for the error
[all...]
/freebsd-13-stable/contrib/kyua/store/
H A Dexceptions.hpp41 class error : public std::runtime_error { class in namespace:store
43 explicit error(const std::string&);
44 virtual ~error(void) throw();
49 class integrity_error : public error {
57 class old_schema_error : public error {
58 /// Version in the database that caused this error.
H A Dexceptions.cpp34 /// Constructs a new error with a plain-text message.
36 /// \param message The plain-text error message.
37 store::error::error(const std::string& message) : function in class:store::error
43 /// Destructor for the error.
44 store::error::~error(void) throw()
49 /// Constructs a new error with a plain-text message.
51 /// \param message The plain-text error message.
53 error(messag
[all...]
/freebsd-13-stable/contrib/kyua/utils/process/
H A Dexceptions.hpp42 class error : public std::runtime_error { class in namespace:utils::process
44 explicit error(const std::string&);
45 ~error(void) throw();
53 /// (i.e. be able to keep it as a child of process::error).
54 class system_error : public error {
55 /// Error number describing this libc error condition.
67 class timeout_error : public error {
/freebsd-13-stable/contrib/kyua/utils/signals/
H A Dexceptions.hpp42 class error : public std::runtime_error { class in namespace:utils::signals
44 explicit error(const std::string&);
45 ~error(void) throw();
50 class interrupted_error : public error {
66 /// (i.e. be able to keep it as a child of signals::error).
67 class system_error : public error {
68 /// Error number describing this libc error condition.
/freebsd-13-stable/cddl/contrib/opensolaris/common/ctf/
H A Dctf_error.c62 "Syntax error in type name", /* ECTF_SYNTAX */
84 ctf_errmsg(int error) argument
88 if (error >= ECTF_BASE && (error - ECTF_BASE) < _ctf_nerr)
89 str = _ctf_errlist[error - ECTF_BASE];
91 str = ctf_strerror(error);
93 return (str ? str : "Unknown error");
/freebsd-13-stable/sys/contrib/openzfs/module/os/linux/zfs/
H A Dspa_misc_os.c49 int error; local
51 error = -param_set_deadman_failmode_common(val);
52 if (error == 0)
53 error = param_set_charp(val, kp);
55 return (error);
61 int error; local
63 error = param_set_ulong(val, kp);
64 if (error < 0)
65 return (SET_ERROR(error));
75 int error; local
90 int error; local
[all...]
/freebsd-13-stable/tools/regression/security/access/
H A Dtestaccess.c86 int i, error; local
89 error = open(fd_list[i].fd_name, O_CREAT | O_EXCL, fd_list[i].fd_mode);
90 if (error == -1) {
92 return (error);
94 close(error);
95 error = chown(fd_list[i].fd_name, fd_list[i].fd_owner,
97 if (error) {
99 return (error);
108 int error; local
110 error
126 int error; local
151 int i, error; local
171 int error, errorseen; local
[all...]
/freebsd-13-stable/sys/contrib/ncsw/inc/
H A Dcore_ext.h55 #error "Core is not defined!"
59 #error "Must define core as little-endian or big-endian!"
63 #error "Must define the core cache-line size!"
/freebsd-13-stable/sys/cddl/dev/dtrace/
H A Ddtrace_modevent.c29 int error = 0; local
42 error = EOPNOTSUPP;
46 return (error);
/freebsd-13-stable/tools/regression/tls/ttls3/
H A Dtls-test.c36 const char *error; local
40 error = dlerror();
41 printf("dlopen failed (%s)!\n", error);
47 error = dlerror();
49 if (error) {
51 printf("dlsym failed (%s)!\n", error);
/freebsd-13-stable/lib/libthr/thread/
H A Dthr_affinity.c48 int error; local
51 error = cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_TID,
53 if (error == -1)
54 error = errno;
55 } else if ((error = _thr_find_thread(curthread, td, 0)) == 0) {
57 error = cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_TID, tid,
59 if (error == -1)
60 error = errno;
63 return (error);
71 int error; local
[all...]

Completed in 209 milliseconds

1234567891011>>