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

1234567891011>>

/freebsd-10-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-10-stable/contrib/gcc/ginclude/
H A Dvarargs.h4 #error "GCC no longer implements <varargs.h>."
5 #error "Revise your code to use <stdarg.h>."
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Headers/
H A Dvarargs.h25 #error "Please use <stdarg.h> instead of <varargs.h>"
/freebsd-10-stable/sys/ia64/include/
H A Dvarargs.h46 #error "<varargs.h> is obsolete on ia64. Use <stdarg.h> instead."
/freebsd-10-stable/sbin/hastd/
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
155 int error; local
164 int error; local
181 int error; local
189 int error; local
[all...]
/freebsd-10-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-10-stable/include/
H A Dmalloc.h3 #error "<malloc.h> has been replaced by <stdlib.h>"
H A Dvarargs.h34 #error "<varargs.h> is obsolete with this version of GCC."
35 #error "Change your code to use <stdarg.h> instead."
/freebsd-10-stable/sys/dev/sfxge/common/
H A Defx_check.h47 # error "FALCON is obsolete and is not supported."
53 # error "BOOTCFG requires NVRAM"
60 # error "CHECK_REG requires SIENA or HUNTINGTON or MEDFORD"
67 # error "INTR_FATAL requires SIENA"
74 # error "DIAG requires SIENA or HUNTINGTON or MEDFORD"
81 # error "EV_PREFETCH requires SIENA or HUNTINGTON or MEDFORD"
86 # error "FALCON_NIC_CFG_OVERRIDE is obsolete and is not supported."
92 # error "FILTER requires SIENA or HUNTINGTON or MEDFORD"
98 # error "HUNTINGTON or MEDFORD requires FILTER"
105 # error "LOOPBAC
[all...]
/freebsd-10-stable/contrib/amd/conf/umount/
H A Dumount_bsd44.c54 int error; local
57 error = unmount(mntdir, 0);
58 if (error < 0)
59 error = errno;
61 switch (error) {
66 error = 0; /* Not really an error */
80 error = umount2_fs(mntdir, unmount_flags);
81 if (error < 0)
82 error
103 int error = 0; local
[all...]
/freebsd-10-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-10-stable/lib/libkse/test/
H A Dhello_d.c25 int error; local
27 error = pthread_create(&thread, NULL, entry, NULL);
28 if (error)
30 strerror(error));
32 error = pthread_join(thread, NULL);
33 if (error)
35 strerror(error));
/freebsd-10-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-10-stable/lib/libefi/
H A Defi_nextvarname.c48 int error; local
51 error = libefi_utf8_to_ucs2(name, &req.namesize, &req.name);
52 if (error)
53 return (error);
57 error = libefi_efivar(&req);
59 if (!error) {
60 error = libefi_ucs2_to_utf8(req.name, namesize, name);
61 if (!error)
65 return (error);
/freebsd-10-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-10-stable/lib/libelf/
H A Delf_errno.c39 old = LIBELF_PRIVATE(error);
40 LIBELF_PRIVATE(error) = 0;
53 _libelf_set_error(int error) argument
55 LIBELF_PRIVATE(error) = error;
/freebsd-10-stable/lib/libkse/thread/
H A Dthr_seterrno.c38 * This function needs to reference the global error variable which is
46 void _thread_seterrno(pthread_t thread, int error);
49 _thread_seterrno(pthread_t thread, int error) argument
53 /* The initial thread always uses the global error variable: */
54 errno = error;
57 * Threads other than the initial thread always use the error
60 thread->error = error;
/freebsd-10-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-10-stable/sys/cddl/dev/dtrace/
H A Ddtrace_modevent.c29 int error = 0; local
42 error = EOPNOTSUPP;
46 return (error);
/freebsd-10-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-10-stable/lib/libthr/thread/
H A Dthr_affinity.c46 int error; local
49 error = cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_TID,
51 if (error == -1)
52 error = errno;
53 } else if ((error = _thr_find_thread(curthread, td, 0)) == 0) {
55 error = cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_TID, tid,
57 if (error == -1)
58 error = errno;
61 return (error);
69 int error; local
[all...]
/freebsd-10-stable/sys/dev/smbus/
H A Dsmbconf.c46 smbus_intr(device_t bus, u_char devaddr, char low, char high, int error) argument
53 SMBUS_INTR(sc->owner, devaddr, low, high, error);
60 * Converts an smbus error to a unix error.
65 int error = 0; local
71 error = ENODEV;
73 error = ENXIO;
75 error = EWOULDBLOCK;
77 error = EBUSY;
79 error
89 int error; local
120 int error; local
163 int error; local
[all...]
/freebsd-10-stable/sys/ia64/ia64/
H A Diodev_machdep.c67 int error; local
75 error = iodev_efivar_getvar(efivar_req);
78 error = iodev_efivar_nextname(efivar_req);
81 error = iodev_efivar_setvar(efivar_req);
84 error = EINVAL;
89 error = ENOIOCTL;
92 return (error);
100 int error; local
114 error = copyin(req->name, name, req->namesize - 2);
115 if (error) {
139 int error; local
169 int error; local
[all...]
/freebsd-10-stable/lib/libdwarf/
H A Ddwarf_errmsg.c35 DEFINE_ERROR(ERROR, "An error"),
40 DEFINE_ERROR(ELF, "ELF error"),
48 DEFINE_ERROR(NUM, "Unknown DWARF error")
53 dwarf_errmsg(Dwarf_Error *error) argument
57 if (error == NULL)
60 if (error->err_error < 0 || error->err_error >= DWARF_E_NUM)
62 else if (error->err_error == DWARF_E_NONE)
65 p = _libdwarf_errors[error->err_error];
67 if (error
[all...]

Completed in 393 milliseconds

1234567891011>>