Searched refs:ecode (Results 1 - 25 of 53) sorted by relevance

123

/freebsd-11-stable/lib/libc/net/
H A Dgai_strerror.c79 gai_strerror(int ecode) argument
102 if (ecode > 0 && ecode < EAI_MAX)
103 strlcpy(buf, catgets(catd, 3, ecode, ai_errlist[ecode]),
105 else if (ecode == 0)
116 if (ecode >= 0 && ecode < EAI_MAX)
117 return ai_errlist[ecode];
/freebsd-11-stable/crypto/heimdal/lib/roken/
H A Dgai_strerror.c66 gai_strerror(int ecode) argument
71 if (g->code == ecode)
/freebsd-11-stable/sys/dev/ath/ath_hal/ar5312/
H A Dar5312_attach.c72 HAL_STATUS ecode; local
130 ecode = HAL_EIO;
167 ecode = HAL_ENOTSUPP;
176 ecode = HAL_ESELFTEST;
189 rf = ath_hal_rfprobe(ah, &ecode);
198 ecode = HAL_ENOTSUPP;
202 ecode = ath_hal_legacyEepromAttach(ah);
203 if (ecode != HAL_OK) {
229 ecode = HAL_ENOTSUPP;
234 ecode
[all...]
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9001/
H A Dar9130_attach.c80 HAL_STATUS ecode; local
136 ecode = HAL_EIO;
143 ecode = HAL_EIO;
170 ecode = ath_hal_v14EepromAttach(ah);
171 if (ecode != HAL_OK)
176 ecode = HAL_EIO;
185 ecode = HAL_ESELFTEST;
212 ecode = HAL_ENOTSUPP;
216 rfStatus = ar2133RfAttach(ah, &ecode);
219 __func__, ecode);
[all...]
H A Dar9160_attach.c124 HAL_STATUS ecode; local
156 ecode = HAL_EIO;
163 ecode = HAL_EIO;
194 ecode = ath_hal_v14EepromAttach(ah);
195 if (ecode != HAL_OK)
203 ecode = HAL_EIO;
212 ecode = HAL_ESELFTEST;
239 ecode = HAL_ENOTSUPP;
243 rfStatus = ar2133RfAttach(ah, &ecode);
246 __func__, ecode);
[all...]
/freebsd-11-stable/usr.sbin/cron/lib/
H A Dentry.c36 typedef enum ecode { enum
109 ecode_e ecode = e_none; local
225 ecode = e_timespec;
233 ecode = e_cmd;
243 ecode = e_minute;
253 ecode = e_hour;
265 ecode = e_dom;
275 ecode = e_month;
287 ecode = e_dow;
314 ecode
[all...]
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/
H A Dar9287_attach.c121 HAL_STATUS ecode; local
186 ecode = HAL_EIO;
193 ecode = HAL_EIO;
211 ecode = HAL_EIO;
239 ecode = ath_hal_9287EepromAttach(ah);
240 if (ecode != HAL_OK)
245 ecode = HAL_EIO;
254 ecode = HAL_ESELFTEST;
281 ecode = HAL_ENOTSUPP;
285 rfStatus = ar9287RfAttach(ah, &ecode);
[all...]
H A Dar9285_attach.c143 HAL_STATUS ecode; local
204 ecode = HAL_EIO;
211 ecode = HAL_EIO;
246 ecode = ath_hal_v4kEepromAttach(ah);
247 if (ecode != HAL_OK)
253 ecode = HAL_EIO;
262 ecode = HAL_ESELFTEST;
289 ecode = HAL_ENOTSUPP;
293 rfStatus = ar9285RfAttach(ah, &ecode);
296 __func__, ecode);
[all...]
H A Dar9280_attach.c158 HAL_STATUS ecode; local
218 ecode = HAL_EIO;
225 ecode = HAL_EIO;
256 ecode = ath_hal_v14EepromAttach(ah);
257 if (ecode != HAL_OK)
262 ecode = HAL_EIO;
271 ecode = HAL_ESELFTEST;
298 ecode = HAL_ENOTSUPP;
302 rfStatus = ar9280RfAttach(ah, &ecode);
305 __func__, ecode);
[all...]
/freebsd-11-stable/sys/dev/ath/ath_hal/ar5211/
H A Dar5211_attach.c213 HAL_STATUS ecode; local
223 ecode = HAL_ENOMEM;
250 ecode = HAL_EIO;
270 ecode = HAL_ENOTSUPP;
279 ecode = HAL_ESELFTEST;
297 ecode = HAL_ENOTSUPP;
306 ecode = HAL_EESIZE;
309 ecode = ath_hal_legacyEepromAttach(ah);
310 if (ecode != HAL_OK) {
330 ecode
[all...]
/freebsd-11-stable/sys/dev/ath/ath_hal/ar5210/
H A Dar5210_attach.c193 HAL_STATUS ecode; local
205 ecode = HAL_ENOMEM;
233 ecode = HAL_EIO;
258 ecode = ath_hal_v1EepromAttach(ah);
259 if (ecode != HAL_OK) {
262 ecode = ath_hal_eepromGet(ah, AR_EEP_REGDMN_0, &eeval);
263 if (ecode != HAL_OK) {
270 ecode = ath_hal_eepromGet(ah, AR_EEP_MACADDR, ahp->ah_macaddr);
271 if (ecode != HAL_OK) {
294 *status = ecode;
[all...]
H A Dar5210_misc.c99 HAL_STATUS ecode; local
102 ecode = HAL_EINVAL;
111 ecode = HAL_EEWRITE;
114 ecode = HAL_EIO; /* disallow all writes */
117 *status = ecode;
/freebsd-11-stable/usr.sbin/nfsd/
H A Dnfsd.c158 int udpflag, ecode, error, s; local
292 ecode = getaddrinfo(NULL, "nfs", &hints, &ai_udp);
293 if (ecode != 0)
294 err(1, "getaddrinfo udp: %s", gai_strerror(ecode));
316 ecode = getaddrinfo(NULL, "nfs", &hints, &ai_udp6);
317 if (ecode != 0)
318 err(1, "getaddrinfo udp6: %s", gai_strerror(ecode));
340 ecode = getaddrinfo(NULL, "nfs", &hints, &ai_tcp);
341 if (ecode != 0)
342 err(1, "getaddrinfo tcp: %s", gai_strerror(ecode));
810 int ecode; local
[all...]
/freebsd-11-stable/contrib/atf/atf-c++/detail/
H A Dexceptions.cpp95 const int ecode = atf_libc_error_code(err); local
98 throw atf::system_error("XXX", msg, ecode);
/freebsd-11-stable/sys/dev/ath/ath_hal/ar5212/
H A Dar5212_attach.c329 HAL_STATUS ecode; local
348 ecode = HAL_EIO;
362 ecode = HAL_ENOTSUPP;
372 ecode = HAL_EIO;
386 ecode = HAL_ESELFTEST;
403 rf = ath_hal_rfprobe(ah, &ecode);
454 ecode = HAL_ENOTSUPP;
463 ecode = HAL_ENOTSUPP;
474 ecode = HAL_EESIZE;
483 ecode
[all...]
/freebsd-11-stable/sys/dev/cxgb/ulp/iw_cxgb/
H A Diw_cxgb_qp.c594 u8 *layer_type, u8 *ecode)
616 *ecode = RDMAP_CANT_INV_STAG;
619 *ecode = RDMAP_INV_STAG;
626 *ecode = RDMAP_CANT_INV_STAG;
628 *ecode = RDMAP_STAG_NOT_ASSOC;
632 *ecode = RDMAP_STAG_NOT_ASSOC;
636 *ecode = RDMAP_ACC_VIOL;
640 *ecode = RDMAP_TO_WRAP;
645 *ecode = DDPT_BASE_BOUNDS;
648 *ecode
593 build_term_codes(struct respQ_msg_t *rsp_msg, u8 *layer_type, u8 *ecode) argument
[all...]
/freebsd-11-stable/libexec/tftpd/
H A Dtftpd.c519 int has_options = 0, ecode; local
537 ecode = validate_access(peer, &filename, WRQ);
538 if (ecode == 0) {
546 filename, errtomsg(ecode));
549 if (ecode) {
550 send_error(peer, ecode);
564 int has_options = 0, ecode; local
582 ecode = validate_access(peer, &filename, RRQ);
583 if (ecode == 0) {
610 filename, errtomsg(ecode));
[all...]
/freebsd-11-stable/contrib/llvm-project/libcxx/src/
H A Dregex.cpp17 make_error_type_string(regex_constants::error_type ecode) argument
19 switch (ecode)
64 regex_error::regex_error(regex_constants::error_type ecode) argument
65 : runtime_error(make_error_type_string(ecode)),
66 __code_(ecode)
/freebsd-11-stable/contrib/ntp/libntp/
H A Dntp_rfc2553.c456 gai_strerror(int ecode) argument
458 if (ecode < 0 || ecode > EAI_MAX)
459 ecode = EAI_MAX;
460 return ai_errlist[ecode];
/freebsd-11-stable/usr.sbin/rpcbind/
H A Dutil.c326 int ecode; local
331 if ((ecode = getaddrinfo(NULL, "sunrpc", &hints, &res))) {
334 gai_strerror(ecode));
348 if ((ecode = getaddrinfo(NULL, "sunrpc", &hints, &res))) {
351 gai_strerror(ecode));
/freebsd-11-stable/sys/dev/ath/ath_hal/ar5416/
H A Dar5416_attach.c306 HAL_STATUS ecode; local
330 ecode = HAL_EIO;
336 ecode = HAL_EIO;
373 ecode = ath_hal_v14EepromAttach(ah);
374 if (ecode != HAL_OK)
380 ecode = HAL_EIO;
389 ecode = HAL_ESELFTEST;
425 ecode = HAL_ENOTSUPP;
434 ecode = HAL_EEREAD;
438 ecode
[all...]
/freebsd-11-stable/crypto/heimdal/appl/afsutil/
H A Dpagsh.c87 usage(int ecode) argument
90 exit(ecode);
H A Dafslog.c124 usage(int ecode) argument
127 exit(ecode);
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/
H A Dqp.c973 u8 *ecode)
983 *ecode = 0;
999 *ecode = RDMAP_CANT_INV_STAG;
1002 *ecode = RDMAP_INV_STAG;
1009 *ecode = RDMAP_CANT_INV_STAG;
1011 *ecode = RDMAP_STAG_NOT_ASSOC;
1015 *ecode = RDMAP_STAG_NOT_ASSOC;
1019 *ecode = RDMAP_ACC_VIOL;
1023 *ecode = RDMAP_TO_WRAP;
1028 *ecode
972 build_term_codes(struct t4_cqe *err_cqe, u8 *layer_type, u8 *ecode) argument
[all...]
/freebsd-11-stable/sbin/ifconfig/
H A Difpfsync.c101 int ecode; local
113 if ((ecode = getaddrinfo(val, NULL, &hints, &peerres)) != 0)
115 gai_strerror(ecode));

Completed in 957 milliseconds

123