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

123

/freebsd-10.0-release/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-10.0-release/crypto/heimdal/lib/roken/
H A Dgai_strerror.c66 gai_strerror(int ecode) argument
71 if (g->code == ecode)
/freebsd-10.0-release/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-10.0-release/sys/dev/ath/ath_hal/ar9001/
H A Dar9130_attach.c78 HAL_STATUS ecode; local
134 ecode = HAL_EIO;
141 ecode = HAL_EIO;
168 ecode = ath_hal_v14EepromAttach(ah);
169 if (ecode != HAL_OK)
174 ecode = HAL_EIO;
183 ecode = HAL_ESELFTEST;
210 ecode = HAL_ENOTSUPP;
214 rfStatus = ar2133RfAttach(ah, &ecode);
217 __func__, ecode);
[all...]
H A Dar9160_attach.c123 HAL_STATUS ecode; local
155 ecode = HAL_EIO;
162 ecode = HAL_EIO;
193 ecode = ath_hal_v14EepromAttach(ah);
194 if (ecode != HAL_OK)
202 ecode = HAL_EIO;
211 ecode = HAL_ESELFTEST;
238 ecode = HAL_ENOTSUPP;
242 rfStatus = ar2133RfAttach(ah, &ecode);
245 __func__, ecode);
[all...]
/freebsd-10.0-release/usr.sbin/cron/lib/
H A Dentry.c36 typedef enum ecode { enum
107 ecode_e ecode = e_none; local
213 ecode = e_timespec;
221 ecode = e_cmd;
231 ecode = e_minute;
241 ecode = e_hour;
253 ecode = e_dom;
263 ecode = e_month;
275 ecode = e_dow;
302 ecode
[all...]
/freebsd-10.0-release/sys/dev/ath/ath_hal/ar9002/
H A Dar9287_attach.c120 HAL_STATUS ecode; local
185 ecode = HAL_EIO;
192 ecode = HAL_EIO;
210 ecode = HAL_EIO;
238 ecode = ath_hal_9287EepromAttach(ah);
239 if (ecode != HAL_OK)
244 ecode = HAL_EIO;
253 ecode = HAL_ESELFTEST;
280 ecode = HAL_ENOTSUPP;
284 rfStatus = ar9287RfAttach(ah, &ecode);
[all...]
H A Dar9285_attach.c142 HAL_STATUS ecode; local
203 ecode = HAL_EIO;
210 ecode = HAL_EIO;
245 ecode = ath_hal_v4kEepromAttach(ah);
246 if (ecode != HAL_OK)
252 ecode = HAL_EIO;
261 ecode = HAL_ESELFTEST;
288 ecode = HAL_ENOTSUPP;
292 rfStatus = ar9285RfAttach(ah, &ecode);
295 __func__, ecode);
[all...]
H A Dar9280_attach.c157 HAL_STATUS ecode; local
217 ecode = HAL_EIO;
224 ecode = HAL_EIO;
255 ecode = ath_hal_v14EepromAttach(ah);
256 if (ecode != HAL_OK)
261 ecode = HAL_EIO;
270 ecode = HAL_ESELFTEST;
297 ecode = HAL_ENOTSUPP;
301 rfStatus = ar9280RfAttach(ah, &ecode);
304 __func__, ecode);
[all...]
/freebsd-10.0-release/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-10.0-release/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...]
/freebsd-10.0-release/usr.sbin/nfsd/
H A Dnfsd.c159 int udpflag, ecode, error, s, srvcnt; local
291 ecode = getaddrinfo(NULL, "nfs", &hints, &ai_udp);
292 if (ecode != 0)
293 err(1, "getaddrinfo udp: %s", gai_strerror(ecode));
310 ecode = getaddrinfo(NULL, "nfs", &hints, &ai_udp6);
311 if (ecode != 0)
312 err(1, "getaddrinfo udp6: %s", gai_strerror(ecode));
329 ecode = getaddrinfo(NULL, "nfs", &hints, &ai_tcp);
330 if (ecode != 0)
331 err(1, "getaddrinfo tcp: %s", gai_strerror(ecode));
833 int ecode; local
[all...]
/freebsd-10.0-release/contrib/atf/atf-c++/detail/
H A Dexceptions.cpp98 const int ecode = atf_libc_error_code(err); local
101 throw atf::system_error("XXX", msg, ecode);
/freebsd-10.0-release/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-10.0-release/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-10.0-release/contrib/libc++/src/
H A Dregex.cpp18 make_error_type_string(regex_constants::error_type ecode) argument
20 switch (ecode)
63 regex_error::regex_error(regex_constants::error_type ecode) argument
64 : runtime_error(make_error_type_string(ecode)),
65 __code_(ecode)
/freebsd-10.0-release/contrib/ntp/libntp/
H A Dntp_rfc2553.c318 gai_strerror(int ecode) argument
320 if (ecode < 0 || ecode > EAI_MAX)
321 ecode = EAI_MAX;
322 return ai_errlist[ecode];
/freebsd-10.0-release/usr.sbin/rpcbind/
H A Dutil.c270 int ecode; local
275 if ((ecode = getaddrinfo(NULL, "sunrpc", &hints, &res))) {
278 gai_strerror(ecode));
290 if ((ecode = getaddrinfo(NULL, "sunrpc", &hints, &res))) {
293 gai_strerror(ecode));
/freebsd-10.0-release/libexec/tftpd/
H A Dtftpd.c515 int has_options = 0, ecode; local
533 ecode = validate_access(peer, &filename, WRQ);
534 if (ecode == 0) {
542 filename, errtomsg(ecode));
556 int has_options = 0, ecode; local
574 ecode = validate_access(peer, &filename, RRQ);
575 if (ecode == 0) {
602 filename, errtomsg(ecode));
604 if (ecode) {
609 if (suppress_naks && *filename != '/' && ecode
[all...]
/freebsd-10.0-release/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-10.0-release/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-10.0-release/sys/dev/cxgbe/iw_cxgbe/
H A Dqp.c763 u8 *ecode)
773 *ecode = 0;
789 *ecode = RDMAP_CANT_INV_STAG;
792 *ecode = RDMAP_INV_STAG;
799 *ecode = RDMAP_CANT_INV_STAG;
801 *ecode = RDMAP_STAG_NOT_ASSOC;
805 *ecode = RDMAP_STAG_NOT_ASSOC;
809 *ecode = RDMAP_ACC_VIOL;
813 *ecode = RDMAP_TO_WRAP;
818 *ecode
762 build_term_codes(struct t4_cqe *err_cqe, u8 *layer_type, u8 *ecode) argument
[all...]
/freebsd-10.0-release/sbin/ifconfig/
H A Difpfsync.c99 int ecode; local
111 if ((ecode = getaddrinfo(val, NULL, &hints, &peerres)) != 0)
113 gai_strerror(ecode));
/freebsd-10.0-release/contrib/tcpdump/
H A Dprint-smb.c965 int ecode; local
973 ecode = data[4];
976 switch (ecode) {
990 printf("Unspecified error 0x%X", ecode);
1038 int ecode; local
1046 ecode = origdata[4];
1047 switch (ecode) {
1061 printf("Unspecified error 0x%X\n", ecode);

Completed in 335 milliseconds

123