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

1234567891011>>

/barrelfish-2018-10-04/include/arch/powerpc64/arch/
H A Dsetjmp.h87 # error SAVE FLOAT!!
90 # error FIXME
/barrelfish-2018-10-04/lib/lwip2/src/core/
H A Dinit.c87 #error "BYTE_ORDER is not defined, you have to define it in your cc.h"
90 #error "If you want to use broadcast filter per pcb on recv operations, you have to define IP_SOF_BROADCAST=1 in your lwipopts.h"
93 #error "If you want to use UDP Lite, you have to define LWIP_UDP=1 in your lwipopts.h"
96 #error "If you want to use DHCP, you have to define LWIP_UDP=1 in your lwipopts.h"
99 #error "If you want to use IGMP/LWIP_MULTICAST_TX_OPTIONS, you have to define LWIP_UDP=1 in your lwipopts.h"
102 #error "If you want to use DNS, you have to define LWIP_UDP=1 in your lwipopts.h"
106 #error "If you want to use ARP Queueing, you have to define MEMP_NUM_ARP_QUEUE>=1 in your lwipopts.h"
109 #error "If you want to use RAW, you have to define MEMP_NUM_RAW_PCB>=1 in your lwipopts.h"
112 #error "If you want to use UDP, you have to define MEMP_NUM_UDP_PCB>=1 in your lwipopts.h"
115 #error "I
[all...]
/barrelfish-2018-10-04/lib/libc/stdio/
H A Dfloatio.h49 #error "floating point buffers too small"
H A Dxprintf_errno.c52 int ret, error; local
57 error = *((const int *)arg[0]);
58 if (error >= 0 && error < __hidden_sys_nerr) {
59 p = strerror(error);
62 sprintf(buf, "errno=%d/0x%x", error, error);
/barrelfish-2018-10-04/include/arch/aarch64/barrelfish/
H A Dcpu_arch.h21 #error "must define CURRENT_CPU_TYPE"
/barrelfish-2018-10-04/lib/libc/sys/
H A Dgettimeofday.c42 int error; local
44 error = __vdso_gettimeofday(tv, tz);
45 if (error == ENOSYS)
46 error = __sys_gettimeofday(tv, tz);
47 return (error);
H A Dclock_gettime.c43 int error; local
46 error = __vdso_clock_gettime(clock_id, ts);
48 error = ENOSYS;
49 if (error == ENOSYS)
50 error = __sys_clock_gettime(clock_id, ts);
51 return (error);
H A D__vdso_gettimeofday.c40 int error; local
43 error = __vdso_gettc(th, &tc);
44 if (error == 0)
46 return (error);
64 int error; local
74 error = tc_delta(th, &delta);
75 if (error == EAGAIN)
77 if (error != 0)
78 return (error);
99 int error; local
122 int abs, error; local
[all...]
/barrelfish-2018-10-04/lib/libc/posix1e/
H A Dacl_from_text_nfs4.c88 int qualifier_length, error; local
102 error = acl_get_tag_type(entry, &tag);
103 if (error)
104 return (error);
106 error = _acl_name_to_id(tag, str, &id);
107 if (error) {
118 int error; local
121 error = _nfs4_parse_access_mask(str, &perm);
122 if (error)
123 return (error);
133 int error; local
204 int error, need_qualifier; local
[all...]
H A Dacl_to_text_nfs4.c49 int error; local
55 error = acl_get_tag_type(entry, &tag);
56 if (error)
57 return (error);
112 int error; local
115 error = acl_get_entry_type_np(entry, &entry_type);
116 if (error)
117 return (error);
142 int error; local
146 error
173 int error, len; local
230 int error, off = 0, size, entry_id = ACL_FIRST_ENTRY; local
[all...]
/barrelfish-2018-10-04/lib/libc/stdlib/
H A Dstrtonum.c36 int error = 0; local
51 error = INVALID;
55 error = INVALID;
57 error = TOOSMALL;
59 error = TOOLARGE;
62 *errstrp = ev[error].errstr;
63 errno = ev[error].err;
64 if (error)
/barrelfish-2018-10-04/include/arch/arm/barrelfish/
H A Dcpu_arch.h24 #error "must define CURRENT_CPU_TYPE"
/barrelfish-2018-10-04/lib/libc/gen/
H A Dsysctlnametomib.c46 int error; local
52 error = sysctl(oid, 2, mibp, sizep, name, strlen(name));
54 return (error);
H A D__getosreldate.c51 int error, osrel; local
56 error = _elf_aux_info(AT_OSRELDATE, &osreldate, sizeof(osreldate));
57 if (error == 0 && osreldate != 0)
64 error = sysctl(oid, 2, &osrel, &len, NULL, 0);
65 if (error == 0 && osrel > 0 && len == sizeof(osrel))
H A Dgetpeereid.c45 int error; local
48 error = _getsockopt(s, 0, LOCAL_PEERCRED, &xuc, &xuclen);
49 if (error != 0)
50 return (error);
/barrelfish-2018-10-04/usr/eclipseclp/Mercury/
H A Dmercury.pl13 error/1,
16 error(String) :-
17 writeln(error, String),
21 writeln(error, String),
22 write(error, "Key: "), writeq(error, Key), nl(error),
23 write(error, "Value: "), writeq(error, Value), nl(error),
[all...]
/barrelfish-2018-10-04/usr/bench/rcce/bt/
H A Dsetup_mpi.c17 int error, color, nc; local
19 if (error = RCCE_init(argc, argv)) return(error);
/barrelfish-2018-10-04/lib/lwip/src/core/
H A Dinit.c88 #error "BYTE_ORDER is not defined, you have to define it in your cc.h"
91 #error "If you want to use broadcast filter per pcb on recv operations, you have to define IP_SOF_BROADCAST=1 in your lwipopts.h"
94 #error "If you want to use ARP Queueing, you have to define LWIP_ARP=1 in your lwipopts.h"
97 #error "If you want to use UDP Lite, you have to define LWIP_UDP=1 in your lwipopts.h"
100 #error "If you want to use SNMP, you have to define LWIP_UDP=1 in your lwipopts.h"
103 #error "If you want to use DHCP, you have to define LWIP_UDP=1 in your lwipopts.h"
106 #error "If you want to use IGMP, you have to define LWIP_UDP=1 in your lwipopts.h"
109 #error "If you want to use DNS, you have to define LWIP_UDP=1 in your lwipopts.h"
112 #error "If you want to use ARP, ARP_TABLE_SIZE must fit in an s8_t, so, you have to reduce it in your lwipopts.h"
115 #error "I
[all...]
/barrelfish-2018-10-04/lib/devif/backends/net/mlx4/include/linux/
H A Derr.h38 ERR_PTR(long error) argument
40 return (void *)error;
H A Dnet.h49 int error; local
56 error = (*so->so_proto->pr_usrreqs->pru_peeraddr)(so, &nam);
58 error = (*so->so_proto->pr_usrreqs->pru_sockaddr)(so, &nam);
59 if (error)
60 return (-error);
H A Dsocket.h39 int error; local
47 error = -uiomove(kdata, len, &uio);
48 return (error);
55 int error; local
63 error = -uiomove(kdata, len, &uio);
/barrelfish-2018-10-04/usr/drivers/solarflair/sfxge/
H A Dsfxge.c45 int error = 0; local
49 if ((error = efx_nic_create(sc->family, (efsys_identifier_t *)sc,
72 if ((error = efx_nvram_init(enp)) != 0) {
78 if ((error = efx_vpd_init(enp)) != 0) {
84 if ((error = efx_nic_reset(enp)) != 0) {
/barrelfish-2018-10-04/lib/libc/rpc/
H A Drpc_prot.c229 accepted(enum accept_stat acpt_stat, struct rpc_err *error) argument
232 assert(error != NULL);
237 error->re_status = RPC_PROGUNAVAIL;
241 error->re_status = RPC_PROGVERSMISMATCH;
245 error->re_status = RPC_PROCUNAVAIL;
249 error->re_status = RPC_CANTDECODEARGS;
253 error->re_status = RPC_SYSTEMERROR;
257 error->re_status = RPC_SUCCESS;
262 error->re_status = RPC_FAILED;
263 error
268 rejected(enum reject_stat rjct_stat, struct rpc_err *error) argument
293 _seterr_reply(struct rpc_msg *msg, struct rpc_err *error) argument
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/test/
H A Dtests.com26 $ on error then goto exit
145 $ define sys$error nla0:
152 $ deassign sys$error
155 $ define sys$error nla0:
157 $ deassign sys$error
161 $ define sys$error nla0:
163 $ deassign sys$error
166 $ define sys$error nla0:
168 $ deassign sys$error
171 $ define sys$error nla
[all...]
/barrelfish-2018-10-04/lib/acpica/source/compiler/
H A Daslprimaries.y132 error ')' {$$ = AslDoError(); yyclearin;}
141 error ')' {$$ = AslDoError(); yyclearin;}
151 error ')' {$$ = AslDoError(); yyclearin;}
161 error ')' {$$ = AslDoError(); yyclearin;}
171 error ')' {$$ = AslDoError(); yyclearin;}
196 error ')' '{' error '}' {$$ = AslDoError(); yyclearin;}
224 error ')' {$$ = AslDoError(); yyclearin;}
234 error ')' {$$ = AslDoError(); yyclearin;}
245 error ')' {
[all...]

Completed in 106 milliseconds

1234567891011>>