| /src/external/bsd/ntp/dist/libntp/ |
| ntp_crypto_rnd.c | 103 char *err_str; local 106 err_str = ERR_error_string(err, NULL); 107 msyslog(LOG_ERR, "RAND_bytes failed: %s", err_str);
|
| /src/crypto/external/bsd/libsaslc/dist/src/ |
| error.h | 50 const char *err_str; /**< string error */ member in struct:saslc__error_t 63 (E)->err_str = (S); \
|
| /src/usr.sbin/eeprom/ |
| prephandlers.c | 50 static char err_str[BUFSIZE]; variable 72 snprintf(err_str, sizeof err_str, "%s: %s", (str1), (str2)); \ 74 return (err_str); \ 157 (void) snprintf(err_str, sizeof err_str, 159 return (err_str);
|
| ofhandlers.c | 49 static char err_str[BUFSIZE]; variable 76 snprintf(err_str, sizeof err_str, "%s: %s", (str1), (str2)); \ 78 return (err_str); \ 168 (void)snprintf(err_str, sizeof err_str, 170 return (err_str);
|
| ophandlers.c | 50 static char err_str[BUFSIZE]; variable 66 snprintf(err_str, sizeof err_str, "%s: %s", (str1), (str2)); \ 68 return (err_str); \ 174 (void)snprintf(err_str, sizeof err_str, 176 return (err_str);
|
| eehandlers.c | 57 static char err_str[BUFSIZE]; variable 110 warnx("%s", err_str); \ 117 warnx("%s", err_str); \ 533 strncpy(err_str, "memory allocation failed", sizeof err_str); 539 (void)snprintf(err_str, sizeof err_str, "open: %s: %s", path_eeprom, 546 (void)snprintf(err_str, sizeof err_str, "lseek: %s: %s", 553 (void)snprintf(err_str, sizeof err_str, "read: %s: %s" [all...] |
| /src/crypto/external/bsd/heimdal/dist/lib/krb5/ |
| warn.c | 50 const char *err_str = NULL; local 67 err_str = krb5_get_error_message(context, code); 68 if (err_str != NULL) { 69 *arg = err_str; 80 krb5_free_error_message(context, err_str);
|
| /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/OProfileJIT/ |
| OProfileJITEventListener.cpp | 60 const std::string err_str = sys::StrError(); local 61 LLVM_DEBUG(dbgs() << "Failed to connect to OProfile agent: " << err_str 71 const std::string err_str = sys::StrError(); local 73 << err_str << "\n");
|
| /src/libexec/ld.elf_so/ |
| xmalloc.c | 320 static const char *err_str = local 324 write(STDERR_FILENO, err_str, strlen(err_str));
|
| /src/external/gpl2/groff/dist/src/roff/groff/ |
| pipeline.c | 221 char err_str[BUFSIZ]; local 234 sprintf(err_str, "%s: pipe", commands[i][0]); 235 sys_fatal(err_str); 249 sprintf(err_str, "%s: dup2(stdout)", commands[i][0]); 250 sys_fatal(err_str); 253 sprintf(err_str, "%s: close(pipe[WRITE])", commands[i][0]); 254 sys_fatal(err_str); 267 sprintf(err_str, " %s: dup2(stdin)", commands[i][0]); 268 sys_fatal(err_str); 271 sprintf(err_str, "%s: close(last_input)", commands[i][0]) [all...] |
| /src/external/apache2/llvm/dist/llvm/utils/benchmark/test/ |
| output_test_helper.cc | 335 std::string err_str; local 336 regex->Init(substituted_regex,& err_str); 337 CHECK(err_str.empty()) << "Could not construct regex \"" << substituted_regex 340 << "\n got error: " << err_str; local
|
| /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/test/ |
| output_test_helper.cc | 344 std::string err_str; local 345 regex->Init(substituted_regex, &err_str); 346 CHECK(err_str.empty()) << "Could not construct regex \"" << substituted_regex 349 << "\n got error: " << err_str; local
|
| /src/external/bsd/openldap/dist/contrib/slapd-modules/smbk5pwd/ |
| smbk5pwd.c | 926 char *err_str, *err_msg = "<unknown error>"; local 927 err_str = krb5_get_error_string( context ); 928 if (!err_str) 932 err_str ? err_str : err_msg, ret ); 933 if (err_str) 934 krb5_free_error_string( context, err_str );
|
| /src/external/bsd/unbound/dist/iterator/ |
| iterator.c | 4142 char* err_str = errinf_to_str_misc(qstate); local 4143 if(err_str) { 4144 verbose(VERB_ALGO, "iterator EDE: %s", err_str); 4145 iq->response->rep->reason_bogus_str = err_str;
|
| /src/external/bsd/unbound/dist/validator/ |
| validator.c | 2546 char* err_str = errinf_to_str_bogus(qstate, local 2548 if(err_str) { 2549 log_info("%s", err_str); 2550 vq->orig_msg->rep->reason_bogus_str = err_str;
|
| /src/crypto/external/apache2/openssl/dist/ssl/quic/ |
| quic_channel.c | 3464 const char *err_str = ossl_quic_err_to_string(error_code); local 3473 if (err_str == NULL) { 3474 err_str = ""; 3498 err_str_pfx, err_str, err_str_sfx, 3506 err_str_pfx, err_str, err_str_sfx,
|
| /src/external/bsd/wpa/dist/src/crypto/ |
| tls_wolfssl.c | 828 static const char * wolfssl_tls_err_string(int err, const char *err_str) 836 return err_str; 857 const char *subject, const char *err_str, 873 ev.cert_fail.reason_txt = wolfssl_tls_err_string(err, err_str); 984 const char *err_str; local 1031 err_str = wolfSSL_X509_verify_cert_error_string(err); 1055 err_str = "Server certificate mismatch"; 1075 err, err_str, depth, buf); 1077 err_str, TLS_FAIL_UNSPECIFIED); 1083 __func__, preverify_ok, err, err_str, [all...] |
| tls_openssl.c | 2307 const char *subject, const char *err_str, 2323 ev.cert_fail.reason_txt = err_str; 2504 const char *err_str; local 2554 err_str = X509_verify_cert_error_string(err); 2576 err_str = "Server certificate mismatch"; 2618 " error %d (%s) depth %d for '%s'", err, err_str, 2621 err_str, TLS_FAIL_UNSPECIFIED); 2627 preverify_ok, err, err_str,
|
| /src/external/bsd/wpa/dist/src/utils/ |
| http_curl.c | 979 const char *err_str; local 992 err_str = X509_verify_cert_error_string(err); 1011 depth, err, err_str, buf);
|