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

/freebsd-10.1-release/contrib/libpcap/
H A Dpcap-bt-linux.h39 int bt_findalldevs(pcap_if_t **alldevsp, char *err_str);
H A Dpcap-netfilter-linux.h34 int netfilter_findalldevs(pcap_if_t **alldevsp, char *err_str);
H A Dpcap-usb-linux.h39 int usb_findalldevs(pcap_if_t **alldevsp, char *err_str);
H A Dpcap-bt-linux.c74 bt_findalldevs(pcap_if_t **alldevsp, char *err_str) argument
88 snprintf(err_str, PCAP_ERRBUF_SIZE,
96 snprintf(err_str, PCAP_ERRBUF_SIZE, "Can't allocate %zu bytes for Bluetooth device list",
106 snprintf(err_str, PCAP_ERRBUF_SIZE,
121 dev_descr, err_str) < 0)
H A Dpcap-netfilter-linux.c624 netfilter_findalldevs(pcap_if_t **alldevsp, char *err_str) argument
634 snprintf(err_str, PCAP_ERRBUF_SIZE, "Can't open netlink socket %d:%s",
640 if (pcap_add_if(&found_dev, NFLOG_IFACE, 0, "Linux netfilter log (NFLOG) interface", err_str) < 0)
642 if (pcap_add_if(&found_dev, NFQUEUE_IFACE, 0, "Linux netfilter queue (NFQUEUE) interface", err_str) < 0)
H A Dpcap-canusb-linux.c89 int canusb_findalldevs(pcap_if_t **alldevsp, char *err_str) argument
133 if (pcap_add_if(alldevsp, dev_name, 0, dev_descr, err_str) < 0)
H A Dpcap-usb-linux.c137 usb_dev_add(pcap_if_t** alldevsp, int n, char *err_str) argument
145 dev_descr, err_str) < 0)
151 usb_findalldevs(pcap_if_t **alldevsp, char *err_str) argument
172 ret = usb_dev_add(alldevsp, n, err_str);
193 ret = usb_dev_add(alldevsp, n, err_str);
/freebsd-10.1-release/contrib/ntp/libntp/
H A Dntp_crypto_rnd.c100 char *err_str; local
103 err_str = ERR_error_string(err, NULL);
105 (void)&err_str;
/freebsd-10.1-release/contrib/groff/src/roff/groff/
H A Dpipeline.c219 char err_str[BUFSIZ]; local
232 sprintf(err_str, "%s: pipe", commands[i][0]);
233 sys_fatal(err_str);
247 sprintf(err_str, "%s: dup2(stdout)", commands[i][0]);
248 sys_fatal(err_str);
251 sprintf(err_str, "%s: close(pipe[WRITE])", commands[i][0]);
252 sys_fatal(err_str);
265 sprintf(err_str, " %s: dup2(stdin)", commands[i][0]);
266 sys_fatal(err_str);
269 sprintf(err_str, "
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Core/
H A DError.cpp203 const char *err_str = AsCString(); local
204 if (err_str == NULL)
205 err_str = "???";
207 SetErrorStringWithFormat("error: %s err = %s (0x%8.8x)", arg_msg, err_str, m_code);
242 const char *err_str = AsCString(); local
243 if (err_str == NULL)
244 err_str = "???";
246 SetErrorStringWithFormat("%s err = %s (0x%8.8x)", arg_msg, err_str, m_code);
309 Error::SetErrorString (const char *err_str) argument
311 if (err_str
[all...]
H A DRegularExpression.cpp262 RegularExpression::GetErrorAsCString (char *err_str, size_t err_str_max_len) const argument
266 if (err_str && err_str_max_len)
267 *err_str = '\0';
271 return ::regerror (m_comp_err, &m_preg, err_str, err_str_max_len);
/freebsd-10.1-release/contrib/telnet/libtelnet/
H A Dkerberos5.c246 const char *err_str; local
248 err_str = krb5_get_error_message(context, ret);
251 RemoteHostName, err_str);
252 krb5_free_error_message(context, err_str);
372 const char *err_str; local
374 err_str = krb5_get_error_message(context, ret);
376 "Read req failed: %s", err_str);
377 krb5_free_error_message(context, err_str);
398 const char *err_str; local
400 err_str
542 const char *err_str; local
[all...]
/freebsd-10.1-release/crypto/heimdal/lib/krb5/
H A Dwarn.c48 const char *err_str = NULL; local
65 err_str = krb5_get_error_message(context, code);
66 if (err_str != NULL) {
67 *arg = err_str;
78 krb5_free_error_message(context, err_str);
/freebsd-10.1-release/contrib/llvm/lib/ExecutionEngine/OProfileJIT/
H A DOProfileJITEventListener.cpp65 const std::string err_str = sys::StrError(); local
66 DEBUG(dbgs() << "Failed to connect to OProfile agent: " << err_str << "\n");
75 const std::string err_str = sys::StrError(); local
77 << err_str << "\n");
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBError.h56 SetErrorString (const char *err_str);
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DError.h246 /// Set the current error string to \a err_str.
255 /// @param err_str
259 SetErrorString (const char *err_str);
H A DRegularExpression.h209 GetErrorAsCString (char *err_str, size_t err_str_max_len) const;
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/API/
H A DSBError.cpp159 SBError::SetErrorString (const char *err_str) argument
162 m_opaque_ap->SetErrorString (err_str);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Target/
H A DStopInfo.cpp448 const char *err_str = condition_error.AsCString("<Unknown Error>"); local
450 log->Printf("Error evaluating condition: \"%s\"\n", err_str);
452 error_sp->PutCString (err_str);
759 const char *err_str = error.AsCString("<Unknown Error>"); local
761 log->Printf("Error evaluating condition: \"%s\"\n", err_str);
763 error_sp->PutCString (err_str);
/freebsd-10.1-release/contrib/ofed/management/opensm/opensm/
H A Dmain.c965 const char *err_str = ib_get_err_str(status); local
966 if (err_str == NULL)
967 err_str = "Unknown Error Type";
968 printf("\nError from osm_opensm_init: %s.\n", err_str);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectBreakpoint.cpp467 char err_str[1024]; local
468 regexp.GetErrorAsCString(err_str, sizeof(err_str));
470 err_str);
505 char err_str[1024]; local
506 regexp.GetErrorAsCString(err_str, sizeof(err_str));
508 err_str);
/freebsd-10.1-release/contrib/libucl/src/
H A Ducl_schema.c724 char *err_str; local
738 num = strtoul (refc, &err_str, 10);
739 if (err_str != NULL && *err_str != '/' && *err_str != '\0') {
H A Ducl_util.c1393 char *err_str; local
1416 index = strtoul (c, &err_str, 10);
1417 if (err_str != NULL && (*err_str != '.' && *err_str != '\0')) {
/freebsd-10.1-release/contrib/wpa/src/crypto/
H A Dtls_openssl.c1120 const char *subject, const char *err_str,
1135 ev.cert_fail.reason_txt = err_str;
1187 const char *err_str; local
1214 err_str = X509_verify_cert_error_string(err);
1232 err_str = "Server certificate mismatch";
1243 " error %d (%s) depth %d for '%s'", err, err_str,
1246 err_str, TLS_FAIL_UNSPECIFIED);
1252 preverify_ok, err, err_str,
1118 openssl_tls_fail_event(struct tls_connection *conn, X509 *err_cert, int err, int depth, const char *subject, const char *err_str, enum tls_fail_reason reason) argument
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/
H A DProcessMonitor.cpp961 char err_str[err_len]; local
968 if ((pid = terminal.Fork(err_str, err_len)) == -1)

Completed in 271 milliseconds