| /src/external/bsd/libpcap/dist/ |
| pcap-rpcap-unix.h | 1 pcap_t *rpcap_create(const char *device, char *err_str, int *is_ours);
|
| pcap-bt-linux.h | 39 int bt_findalldevs(pcap_if_list_t *devlistp, char *err_str);
|
| pcap-bt-monitor-linux.h | 33 int bt_monitor_findalldevs(pcap_if_list_t *devlistp, char *err_str);
|
| pcap-netfilter-linux.h | 36 int netfilter_findalldevs(pcap_if_list_t *devlistp, char *err_str);
|
| pcap-rdmasniff.h | 2 int rdmasniff_findalldevs(pcap_if_list_t *devlistp, char *err_str);
|
| pcap-usb-linux.h | 39 int usb_findalldevs(pcap_if_list_t *devlistp, char *err_str);
|
| pcap-bt-linux.c | 76 bt_findalldevs(pcap_if_list_t *devlistp, char *err_str) 90 pcapint_fmt_errmsg_for_errno(err_str, PCAP_ERRBUF_SIZE, 98 snprintf(err_str, PCAP_ERRBUF_SIZE, "Can't allocate %zu bytes for Bluetooth device list", 116 pcapint_fmt_errmsg_for_errno(err_str, PCAP_ERRBUF_SIZE, 137 if (pcapint_add_dev(devlistp, dev_name, PCAP_IF_WIRELESS, dev_descr, err_str) == NULL)
|
| pcap-dbus.c | 338 dbus_findalldevs(pcap_if_list_t *devlistp, char *err_str) 346 err_str) == NULL) 350 err_str) == NULL)
|
| pcap-bt-monitor-linux.c | 75 bt_monitor_findalldevs(pcap_if_list_t *devlistp, char *err_str) 89 "Bluetooth Linux Monitor", err_str) == NULL)
|
| pcap-usb-linux.c | 151 usb_dev_add(pcap_if_list_t *devlistp, int n, char *err_str) 167 "Raw USB traffic, all USB buses", err_str) == NULL) 177 if (pcapint_add_dev(devlistp, dev_name, 0, dev_descr, err_str) == NULL) 185 usb_findalldevs(pcap_if_list_t *devlistp, char *err_str) 216 ret = usb_dev_add(devlistp, n, err_str);
|
| pcap-netfilter-linux.c | 771 netfilter_findalldevs(pcap_if_list_t *devlistp, char *err_str) 780 pcapint_fmt_errmsg_for_errno(err_str, PCAP_ERRBUF_SIZE, 792 "Linux netfilter log (NFLOG) interface", err_str) == NULL) 796 "Linux netfilter queue (NFQUEUE) interface", err_str) == NULL)
|
| pcap-rdmasniff.c | 428 rdmasniff_findalldevs(pcap_if_list_t *devlistp, char *err_str) 445 if (!pcapint_add_dev(devlistp, dev_list[i]->name, 0, "RDMA sniffer", err_str)) {
|
| pcap-netmap.c | 300 pcap_netmap_findalldevs(pcap_if_list_t *devlistp _U_, char *err_str _U_)
|
| /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/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/usr.sbin/eeprom/ |
| 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);
|
| 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);
|
| 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/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/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/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/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/ntp/dist/ntpd/ |
| ntp_parser.y | 1203 char err_str[128]; 1206 snprintf(err_str, sizeof(err_str), 1209 yyerror(err_str);
|