| /src/external/bsd/openpam/dist/modules/pam_return/ |
| pam_return.c | 51 long errcode; local 62 errcode = strtol(errname, &e, 10); 65 if (errcode >= INT_MIN && errcode <= INT_MAX) 66 return (errcode); 69 for (errcode = 0; errcode < PAM_NUM_ERRORS; ++errcode) 70 if (strcmp(errname, pam_err_name[errcode]) == 0) 71 return (errcode); [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| regerror.c | 84 llvm_regerror(int errcode, const llvm_regex_t *preg, char *errbuf, size_t errbuf_size) 88 int target = errcode &~ REG_ITOA; 92 if (errcode == REG_ATOI) 99 if (errcode®_ITOA) {
|
| /src/external/bsd/tre/dist/lib/ |
| regerror.c | 54 tre_regerror(int errcode, const regex_t *preg, char *errbuf, size_t errbuf_size) 60 if (errcode >= 0 61 && errcode < (int)(sizeof(tre_error_messages) 63 err = gettext(tre_error_messages[errcode]);
|
| tre-compile.c | 1797 reg_errcode_t errcode = REG_OK; local 1806 errcode = tre_ast_to_tnfa(uni->left, transitions, counts, offs); 1807 if (errcode != REG_OK) 1808 return errcode; 1809 errcode = tre_ast_to_tnfa(uni->right, transitions, counts, offs); 1816 errcode = tre_make_trans(cat->left->lastpos, cat->right->firstpos, 1818 if (errcode != REG_OK) 1819 return errcode; 1820 errcode = tre_ast_to_tnfa(cat->left, transitions, counts, offs); 1821 if (errcode != REG_OK 1869 reg_errcode_t errcode; local [all...] |
| /src/lib/libc/regex/ |
| regerror.c | 130 regerror(int errcode, 137 int target = errcode &~ REG_ITOA; 141 _DIAGASSERT(errcode != REG_ATOI || preg != NULL); 144 if (errcode == REG_ATOI) { 151 if (errcode®_ITOA) {
|
| /src/external/bsd/nvi/dist/regex/ |
| regerror.c | 122 regerror(int errcode, const regex_t *preg, char *errbuf, size_t errbuf_size) 126 int target = errcode &~ REG_ITOA; 130 if (errcode == REG_ATOI) 137 if (errcode®_ITOA) {
|
| /src/usr.bin/sed/ |
| misc.c | 107 strregerror(int errcode, regex_t *preg) 115 s = regerror(errcode, preg, buf, 0); 117 (void)regerror(errcode, preg, oe, s);
|
| /src/external/bsd/atf/dist/atf-c++/detail/ |
| application.cpp | 231 int errcode; local 234 errcode = main(); 239 errcode = EXIT_FAILURE; 242 errcode = EXIT_FAILURE; 246 errcode = EXIT_FAILURE; 249 errcode = EXIT_FAILURE; 251 return errcode;
|
| /src/external/bsd/libevent/dist/ |
| log.c | 64 static void event_exit(int errcode) EV_NORETURN; 93 event_exit(int errcode) 96 fatal_fn(errcode); 97 exit(errcode); /* should never be reached */ 98 } else if (errcode == EVENT_ERR_ABORT_) 101 exit(errcode);
|
| /src/external/bsd/ntp/dist/sntp/libevent/ |
| log.c | 63 static void event_exit(int errcode) EV_NORETURN; 92 event_exit(int errcode) 95 fatal_fn(errcode); 96 exit(errcode); /* should never be reached */ 97 } else if (errcode == EVENT_ERR_ABORT_) 100 exit(errcode);
|
| /src/external/bsd/libpcap/dist/ |
| sockutils.c | 157 void sock_vfmterrmsg(char *errbuf, size_t errbuflen, int errcode, 164 pcapint_vfmt_errmsg_for_win32_err(errbuf, errbuflen, errcode, 167 pcapint_vfmt_errmsg_for_errno(errbuf, errbuflen, errcode, 172 void sock_fmterrmsg(char *errbuf, size_t errbuflen, int errcode, 178 sock_vfmterrmsg(errbuf, errbuflen, errcode, fmt, ap); 211 static sock_errtype sock_geterrtype(int errcode) 213 switch (errcode) { 394 int errcode; member in struct:addr_status 420 if (addr_a->errcode == addr_b->errcode) 1257 int errcode; local [all...] |
| rpcap-protocol.c | 67 * \param errcode: a integer which tells the other party the type of error 82 rpcap_senderror(PCAP_SOCKET sock, SSL *ssl, uint8 ver, unsigned short errcode, const char *error, char *errbuf) 93 rpcap_createhdr((struct rpcap_header *) sendbuf, ver, RPCAP_MSG_ERROR, errcode, length);
|
| sockutils.h | 135 void sock_vfmterrmsg(char *errbuf, size_t errbuflen, int errcode, 137 void sock_fmterrmsg(char *errbuf, size_t errbuflen, int errcode,
|
| /src/external/bsd/atf/dist/tools/ |
| application.cpp | 269 int errcode; local 280 errcode = EXIT_SUCCESS; 282 errcode = main(); 288 errcode = EXIT_FAILURE; 292 errcode = EXIT_FAILURE; 296 errcode = EXIT_FAILURE; 300 errcode = EXIT_FAILURE; 302 return errcode;
|
| atf-run.cpp | 225 int errcode; local 227 errcode = run_test_directory(tp, w); 232 errcode = run_test_program(tp, tc, w, effective_config); 234 return errcode; 372 int errcode = EXIT_SUCCESS; local 409 errcode = EXIT_FAILURE; 430 errcode = EXIT_FAILURE; 473 errcode = EXIT_FAILURE; 486 return errcode;
|
| /src/external/bsd/tre/dist/src/ |
| agrep.c | 221 int errcode; local 278 errcode = tre_regnexec(&delim, next_record, data_len - (next_record - buf), 282 switch (errcode) 418 int errcode; local 436 errcode = tre_reganexec(&preg, record, record_len, &match, match_params, 0); 437 if ((!invert_match && errcode == REG_OK) 438 || (invert_match && errcode == REG_NOMATCH)) 534 int c, errcode; local 811 errcode = tre_regcomp(&preg, regexp, comp_flags); 812 if (errcode) [all...] |
| /src/external/gpl2/xcvs/dist/lib/ |
| regex.c | 32 # define regerror(errcode, preg, errbuf, errbuf_size) \ 33 __regerror(errcode, preg, errbuf, errbuf_size)
|
| /src/external/bsd/libevent/dist/include/event2/ |
| util.h | 477 /** Replace the most recent socket error with errcode */ 478 #define EVUTIL_SET_SOCKET_ERROR(errcode) \ 479 do { WSASetLastError(errcode); } while (0) 485 const char *evutil_socket_error_to_string(int errcode); 504 /** Replace the most recent socket error with errcode */ 505 #define EVUTIL_SET_SOCKET_ERROR(errcode) ... 509 #define evutil_socket_error_to_string(errcode) ... 514 #define EVUTIL_SET_SOCKET_ERROR(errcode) \ 515 do { errno = (errcode); } while (0) 517 #define evutil_socket_error_to_string(errcode) (strerror(errcode) [all...] |
| /src/external/bsd/ntp/dist/sntp/libevent/include/event2/ |
| util.h | 477 /** Replace the most recent socket error with errcode */ 478 #define EVUTIL_SET_SOCKET_ERROR(errcode) \ 479 do { WSASetLastError(errcode); } while (0) 485 const char *evutil_socket_error_to_string(int errcode); 504 /** Replace the most recent socket error with errcode */ 505 #define EVUTIL_SET_SOCKET_ERROR(errcode) ... 509 #define evutil_socket_error_to_string(errcode) ... 514 #define EVUTIL_SET_SOCKET_ERROR(errcode) \ 515 do { errno = (errcode); } while (0) 517 #define evutil_socket_error_to_string(errcode) (strerror(errcode) [all...] |
| /src/external/bsd/bzip2/dist/ |
| bzlib_private.h | 60 __dead void BZ2_bz__AssertH__fail ( int errcode ); 61 #define AssertH(cond,errcode) \ 62 { if (!(cond)) BZ2_bz__AssertH__fail ( errcode ); } 90 extern void bz_internal_error ( int errcode ); 91 #define AssertH(cond,errcode) \ 92 { if (!(cond)) bz_internal_error ( errcode ); }
|
| /src/sbin/mount_portal/ |
| conf.c | 149 int c, errcode; local 208 errcode = regcomp(&p->p_re, p->p_key, REG_EXTENDED|REG_NOSUB); 209 if (errcode == 0) 213 regerror(errcode, &p->p_re, buf, sizeof(buf));
|
| /src/external/gpl3/binutils/dist/opcodes/ |
| sparc-dis.c | 993 int errcode; local 996 errcode = 1000 errcode = 1; 1004 if (errcode == 0) 1017 errcode = (*info->read_memory_func) 1020 errcode = 1; 1028 if (errcode == 0)
|
| /src/external/gpl3/binutils.old/dist/opcodes/ |
| sparc-dis.c | 1021 int errcode; local 1024 errcode = 1028 errcode = 1; 1032 if (errcode == 0) 1045 errcode = (*info->read_memory_func) 1048 errcode = 1; 1056 if (errcode == 0)
|
| /src/external/bsd/openldap/dist/libraries/libldap/ |
| error.c | 249 ber_int_t errcode = LDAP_SUCCESS; local 304 errcode = ld->ld_errno = LDAP_NO_RESULTS_RETURNED; 382 ld->ld_errno = errcode = LDAP_DECODING_ERROR; 393 if ( errcode == LDAP_SUCCESS ) { 418 return errcode;
|
| /src/external/gpl2/gettext/dist/gettext-tools/src/ |
| msgfilter.c | 570 # define IS_EAGAIN(errcode) 0 573 # define IS_EAGAIN(errcode) ((errcode) == EAGAIN || (errcode) == EWOULDBLOCK) 575 # define IS_EAGAIN(errcode) ((errcode) == EAGAIN)
|