Home
last modified time | relevance | path

Searched refs:err_str (Results 1 – 25 of 42) sorted by relevance

12

/freebsd/contrib/telnet/libtelnet/
H A Dkerberos5.c238 const char *err_str; in kerberos5_send() local
240 err_str = krb5_get_error_message(context, ret); in kerberos5_send()
243 RemoteHostName, err_str); in kerberos5_send()
244 krb5_free_error_message(context, err_str); in kerberos5_send()
364 const char *err_str; in kerberos5_is() local
366 err_str = krb5_get_error_message(context, ret); in kerberos5_is()
368 "Read req failed: %s", err_str); in kerberos5_is()
369 krb5_free_error_message(context, err_str); in kerberos5_is()
390 const char *err_str; in kerberos5_is() local
392 err_str = krb5_get_error_message(context, ret); in kerberos5_is()
[all …]
/freebsd/contrib/ntp/libntp/
H A Dntp_crypto_rnd.c101 char *err_str; in ntp_crypto_random_buf() local
104 err_str = ERR_error_string(err, NULL); in ntp_crypto_random_buf()
105 msyslog(LOG_ERR, "RAND_bytes failed: %s", err_str); in ntp_crypto_random_buf()
/freebsd/crypto/heimdal/lib/krb5/
H A Dwarn.c48 const char *err_str = NULL; in _warnerr() local
65 err_str = krb5_get_error_message(context, code); in _warnerr()
66 if (err_str != NULL) { in _warnerr()
67 *arg = err_str; in _warnerr()
78 krb5_free_error_message(context, err_str); in _warnerr()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/OProfileJIT/
H A DOProfileJITEventListener.cpp60 const std::string err_str = sys::StrError(); in initialize() local
61 LLVM_DEBUG(dbgs() << "Failed to connect to OProfile agent: " << err_str in initialize()
71 const std::string err_str = sys::StrError(); in ~OProfileJITEventListener() local
73 << err_str << "\n"); in ~OProfileJITEventListener()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBError.cpp132 void SBError::SetErrorString(const char *err_str) { in SetErrorString() argument
133 LLDB_INSTRUMENT_VA(this, err_str); in SetErrorString()
136 m_opaque_up->SetErrorString(err_str); in SetErrorString()
/freebsd/contrib/libpcap/
H A Dpcap-bt-linux.c72 bt_findalldevs(pcap_if_list_t *devlistp, char *err_str) in bt_findalldevs() argument
86 pcapint_fmt_errmsg_for_errno(err_str, PCAP_ERRBUF_SIZE, in bt_findalldevs()
94 snprintf(err_str, PCAP_ERRBUF_SIZE, "Can't allocate %zu bytes for Bluetooth device list", in bt_findalldevs()
112 pcapint_fmt_errmsg_for_errno(err_str, PCAP_ERRBUF_SIZE, in bt_findalldevs()
133 if (pcapint_add_dev(devlistp, dev_name, PCAP_IF_WIRELESS, dev_descr, err_str) == NULL) in bt_findalldevs()
H A Dpcap-dbus.c333 dbus_findalldevs(pcap_if_list_t *devlistp, char *err_str) in dbus_findalldevs() argument
341 err_str) == NULL) in dbus_findalldevs()
345 err_str) == NULL) in dbus_findalldevs()
H A Dpcap-usb-linux.c144 usb_dev_add(pcap_if_list_t *devlistp, int n, char *err_str) in usb_dev_add() argument
160 "Raw USB traffic, all USB buses", err_str) == NULL) in usb_dev_add()
170 if (pcapint_add_dev(devlistp, dev_name, 0, dev_descr, err_str) == NULL) in usb_dev_add()
178 usb_findalldevs(pcap_if_list_t *devlistp, char *err_str) in usb_findalldevs() argument
209 ret = usb_dev_add(devlistp, n, err_str); in usb_findalldevs()
H A Dpcap-usb-linux.h37 int usb_findalldevs(pcap_if_list_t *devlistp, char *err_str);
H A Dpcap-bt-monitor-linux.h31 int bt_monitor_findalldevs(pcap_if_list_t *devlistp, char *err_str);
H A Dpcap-bt-linux.h37 int bt_findalldevs(pcap_if_list_t *devlistp, char *err_str);
H A Dpcap-netfilter-linux.h34 int netfilter_findalldevs(pcap_if_list_t *devlistp, char *err_str);
H A Dpcap-rdmasniff.h2 int rdmasniff_findalldevs(pcap_if_list_t *devlistp, char *err_str);
H A Dpcap-bt-monitor-linux.c70 bt_monitor_findalldevs(pcap_if_list_t *devlistp, char *err_str) in bt_monitor_findalldevs() argument
84 "Bluetooth Linux Monitor", err_str) == NULL) in bt_monitor_findalldevs()
H A Dpcap-netfilter-linux.c766 netfilter_findalldevs(pcap_if_list_t *devlistp, char *err_str) in netfilter_findalldevs() argument
775 pcapint_fmt_errmsg_for_errno(err_str, PCAP_ERRBUF_SIZE, in netfilter_findalldevs()
787 "Linux netfilter log (NFLOG) interface", err_str) == NULL) in netfilter_findalldevs()
791 "Linux netfilter queue (NFQUEUE) interface", err_str) == NULL) in netfilter_findalldevs()
/freebsd/contrib/ofed/opensm/opensm/
H A Dmain.c1189 const char *err_str = ib_get_err_str(status); in main() local
1190 if (err_str == NULL) in main()
1191 err_str = "Unknown Error Type"; in main()
1192 printf("\nError from osm_opensm_init: %s.\n", err_str); in main()
1211 const char *err_str = ib_get_err_str(status); in main() local
1212 if (err_str == NULL) in main()
1213 err_str = "Unknown Error Type"; in main()
1214 printf("\nError from osm_opensm_init_finish: %s.\n", err_str); in main()
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DStatus.cpp232 void Status::SetErrorString(llvm::StringRef err_str) { in SetErrorString() argument
233 if (!err_str.empty()) { in SetErrorString()
239 m_string = std::string(err_str); in SetErrorString()
/freebsd/tests/atf_python/
H A Dutils.py54 err_str = os.strerror(error_code)
55 txt = "kernel module '{}' not available: {}".format(mod_name, err_str)
/freebsd/contrib/opencsd/decoder/source/c_api/
H A Docsd_c_api.cpp491 std::string err_str; in ocsd_err_str() local
492 err_str = ocsdError::getErrorString(ocsdError(OCSD_ERR_SEV_ERROR, err)); in ocsd_err_str()
493 strncpy(buffer, err_str.c_str(), buffer_size - 1); in ocsd_err_str()
501 std::string err_str; in ocsd_get_last_err() local
508 err_str = p_err->getErrorString(ocsdError(p_err)); in ocsd_get_last_err()
509 strncpy(message, err_str.c_str(), message_len - 1); in ocsd_get_last_err()
/freebsd/contrib/wpa/src/crypto/
H A Dtls_wolfssl.c828 static const char * wolfssl_tls_err_string(int err, const char *err_str) in wolfssl_tls_err_string() argument
836 return err_str; in wolfssl_tls_err_string()
857 const char *subject, const char *err_str, in wolfssl_tls_fail_event() argument
873 ev.cert_fail.reason_txt = wolfssl_tls_err_string(err, err_str); in wolfssl_tls_fail_event()
984 const char *err_str; in tls_verify_cb() local
1031 err_str = wolfSSL_X509_verify_cert_error_string(err); in tls_verify_cb()
1055 err_str = "Server certificate mismatch"; in tls_verify_cb()
1075 err, err_str, depth, buf); in tls_verify_cb()
1077 err_str, TLS_FAIL_UNSPECIFIED); in tls_verify_cb()
1083 __func__, preverify_ok, err, err_str, in tls_verify_cb()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStopInfo.cpp458 const char *err_str = in PerformAction() local
460 LLDB_LOGF(log, "Error evaluating condition: \"%s\"\n", err_str); in PerformAction()
467 strm << err_str; in PerformAction()
945 const char *err_str = error.AsCString("<unknown error>"); in PerformAction() local
946 LLDB_LOGF(log, "Error evaluating condition: \"%s\"\n", err_str); in PerformAction()
953 strm << err_str; in PerformAction()
/freebsd/contrib/libucl/src/
H A Ducl_schema.c693 char *err_str; in ucl_schema_resolve_ref_component() local
707 num = strtoul (refc, &err_str, 10); in ucl_schema_resolve_ref_component()
708 if (err_str != NULL && *err_str != '/' && *err_str != '\0') { in ucl_schema_resolve_ref_component()
/freebsd/sys/dev/iavf/
H A Diavf_common.c129 snprintf(hw->err_str, sizeof(hw->err_str), "%d", aq_err); in iavf_aq_str()
130 return hw->err_str; in iavf_aq_str()
277 snprintf(hw->err_str, sizeof(hw->err_str), "%d", stat_err); in iavf_stat_str()
278 return hw->err_str; in iavf_stat_str()
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBError.h57 void SetErrorString(const char *err_str);
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStatus.h146 /// Set the current error string to \a err_str.
155 /// \param err_str
157 void SetErrorString(llvm::StringRef err_str);

12