| /src/external/bsd/libpcap/dist/lbl/ |
| os-solaris2.h | 25 char *strerror(int);
|
| /src/external/bsd/tcpdump/dist/lbl/ |
| os-solaris2.h | 26 char *strerror(int);
|
| /src/external/gpl3/binutils/dist/libiberty/ |
| xstrerror.c | 1 /* xstrerror.c -- jacket routine for more robust strerror() usage. 9 Behaves exactly like the standard @code{strerror} function, but 27 extern char *strerror (int,...); 40 extern char *strerror (int); 46 /* If strerror returns NULL, we'll format the number into a static buffer. */ 51 /* Like strerror, but result is never a null pointer. */ 61 vmslib_strerror = (char *(*) (int,...)) strerror; 69 errstr = strerror (errnum);
|
| /src/external/gpl3/binutils.old/dist/libiberty/ |
| xstrerror.c | 1 /* xstrerror.c -- jacket routine for more robust strerror() usage. 9 Behaves exactly like the standard @code{strerror} function, but 27 extern char *strerror (int,...); 40 extern char *strerror (int); 46 /* If strerror returns NULL, we'll format the number into a static buffer. */ 51 /* Like strerror, but result is never a null pointer. */ 61 vmslib_strerror = (char *(*) (int,...)) strerror; 69 errstr = strerror (errnum);
|
| /src/external/gpl3/gcc/dist/libiberty/ |
| xstrerror.c | 1 /* xstrerror.c -- jacket routine for more robust strerror() usage. 9 Behaves exactly like the standard @code{strerror} function, but 27 extern char *strerror (int,...); 40 extern char *strerror (int); 46 /* If strerror returns NULL, we'll format the number into a static buffer. */ 51 /* Like strerror, but result is never a null pointer. */ 61 vmslib_strerror = (char *(*) (int,...)) strerror; 69 errstr = strerror (errnum);
|
| /src/external/gpl3/gcc.old/dist/libiberty/ |
| xstrerror.c | 1 /* xstrerror.c -- jacket routine for more robust strerror() usage. 9 Behaves exactly like the standard @code{strerror} function, but 27 extern char *strerror (int,...); 40 extern char *strerror (int); 46 /* If strerror returns NULL, we'll format the number into a static buffer. */ 51 /* Like strerror, but result is never a null pointer. */ 61 vmslib_strerror = (char *(*) (int,...)) strerror; 69 errstr = strerror (errnum);
|
| /src/external/gpl3/gdb/dist/libiberty/ |
| xstrerror.c | 1 /* xstrerror.c -- jacket routine for more robust strerror() usage. 9 Behaves exactly like the standard @code{strerror} function, but 27 extern char *strerror (int,...); 40 extern char *strerror (int); 46 /* If strerror returns NULL, we'll format the number into a static buffer. */ 51 /* Like strerror, but result is never a null pointer. */ 61 vmslib_strerror = (char *(*) (int,...)) strerror; 69 errstr = strerror (errnum);
|
| /src/external/gpl3/gdb.old/dist/libiberty/ |
| xstrerror.c | 1 /* xstrerror.c -- jacket routine for more robust strerror() usage. 9 Behaves exactly like the standard @code{strerror} function, but 27 extern char *strerror (int,...); 40 extern char *strerror (int); 46 /* If strerror returns NULL, we'll format the number into a static buffer. */ 51 /* Like strerror, but result is never a null pointer. */ 61 vmslib_strerror = (char *(*) (int,...)) strerror; 69 errstr = strerror (errnum);
|
| /src/external/gpl2/xcvs/dist/src/ |
| socket-client.h | 35 socket operations are not known to strerror, and this macro must be 38 # define SOCK_STRERROR strerror 41 # ifndef strerror 42 extern char *strerror (int);
|
| /src/external/ibm-public/postfix/dist/src/util/ |
| mystrerror.c | 14 /* mystrerror() maps an error number to string. Unlike strerror(3) 40 return (errnum ? strerror(errnum) : "Application error");
|
| /src/tests/lib/libpthread/ |
| h_common.h | 9 ATF_REQUIRE_MSG(_ret == 0, "%s: %s", #x, strerror(_ret)); \ 15 ATF_REQUIRE_MSG(_ret == (v), "%s: %s", #x, strerror(_ret)); \
|
| /src/crypto/external/bsd/openssh/dist/ |
| uidswap.c | 73 fatal("getgroups: %.100s", strerror(errno)); 79 strerror(errno)); 82 fatal("getgroups: %.100s", strerror(errno)); 87 fatal("setgroups: %.100s", strerror(errno)); 90 strerror(errno)); 93 strerror(errno)); 112 fatal("seteuid %u: %.100s", (u_int)saved_euid, strerror(errno)); 114 fatal("setgroups: %.100s", strerror(errno)); 116 fatal("setegid %u: %.100s", (u_int)saved_egid, strerror(errno)); 135 fatal("setgid %u: %.100s", (u_int)pw->pw_gid, strerror(errno)) [all...] |
| sshpty.c | 58 error("openpty: %.100s", strerror(errno)); 71 error("chown %.100s 0 0 failed: %.100s", tty, strerror(errno)); 73 error("chmod %.100s 0666 failed: %.100s", tty, strerror(errno)); 92 error("setsid: %.100s", strerror(errno)); 107 error("ioctl(TIOCSCTTY): %.100s", strerror(errno)); 111 error("%.100s: %.100s", tty, strerror(errno)); 119 strerror(errno)); 162 strerror(errno)); 170 strerror(errno)); 174 strerror(errno)) [all...] |
| /src/tests/lib/libc/sys/ |
| t_posix_fallocate.c | 50 strerror(saved)); 53 strerror(saved), strerror(EBADF));
|
| /src/external/gpl3/gdb/dist/gnulib/import/ |
| strerror.c | 0 /* strerror.c --- POSIX compatible system error routine 29 #include "strerror-override.h" 36 strerror (int n) function 37 #undef strerror macro 42 /* Cast away const, due to the historical signature of strerror; 48 msg = strerror (n); 50 /* Our strerror_r implementation might use the system's strerror 51 buffer, so all other clients of strerror have to see the error 53 even if the system strerror is, but portable programs shouldn't 54 be using strerror if they care about thread-safety. * [all...] |
| /src/external/gpl3/gdb.old/dist/gnulib/import/ |
| strerror.c | 0 /* strerror.c --- POSIX compatible system error routine 29 #include "strerror-override.h" 36 strerror (int n) function 37 #undef strerror macro 42 /* Cast away const, due to the historical signature of strerror; 48 msg = strerror (n); 50 /* Our strerror_r implementation might use the system's strerror 51 buffer, so all other clients of strerror have to see the error 53 even if the system strerror is, but portable programs shouldn't 54 be using strerror if they care about thread-safety. * [all...] |
| /src/distrib/utils/libhack/ |
| strerror.c | 1 /* $NetBSD: strerror.c,v 1.3 2003/08/07 09:27:58 agc Exp $ */ 41 strerror(num) function
|
| /src/external/lgpl2/userspace-rcu/dist/src/ |
| urcu-die.h | 19 __func__, __LINE__, strerror(cause)); \
|
| /src/tests/net/net/ |
| t_udp.c | 38 strerror(errno)); 42 strerror(errno)); 47 strerror(errno)); 52 strerror(errno)); 56 strerror(errno)); 61 strerror(errno)); 65 strerror(errno)); 69 strerror(errno)); 73 strerror(errno));
|
| /src/tests/ |
| h_macros.h | 42 ATF_REQUIRE_MSG((x) != (v), "%s: %s", #x, strerror(errno)) 45 ATF_CHECK_MSG((x) != (v), "%s: %s", #x, strerror(errno)) 49 ATF_CHECK_MSG((x) != -1, "%s [" fmt "]: %s", #x, arg, strerror(errno)) 53 ATF_REQUIRE_MSG(RZ_rv == 0, "%s: %s", #x, strerror(RZ_rv)); \ 68 strlcat(buf, strerror(sverrno), sizeof(buf));
|
| /src/external/bsd/tmux/dist/compat/ |
| systemd.c | 74 xasprintf(cause, "systemd socket error (%s)", strerror(errno)); 126 strerror(-r)); 140 strerror(-r)); 152 strerror(-r)); 159 xasprintf(cause, "failed to generate uuid: %s", strerror(-r)); 168 strerror(-r)); 176 strerror(-r)); 184 strerror(-r)); 196 strerror(-r)); 207 strerror(-r)) [all...] |
| /src/external/bsd/wpa/dist/src/ap/ |
| vlan_ifconfig.c | 26 "failed: %s", __func__, strerror(errno)); 36 __func__, if_name, strerror(errno)); 49 __func__, if_name, up, strerror(errno));
|
| /src/tests/usr.sbin/stdethers/ |
| t_stdethers.sh | 41 strerror=$(cat $tmp) 42 atf_fail "$strerror"
|
| /src/tests/usr.sbin/stdhosts/ |
| t_stdhosts.sh | 41 strerror=$(cat $tmp) 42 atf_fail "$strerror"
|
| /src/tests/lib/libc/gen/ |
| t_dir.c | 62 strerror(errno)); \ 67 "mkdir failed: %s", strerror(errno)); 79 ".", strerror(errno)); 83 "..", strerror(errno)); 88 "first", strerror(errno)); 91 ATF_REQUIRE_MSG(here != -1, "telldir failed: %s", strerror(errno)); 96 "second", strerror(errno)); 105 "third", strerror(errno)); 111 "first[1]", strerror(errno)); 120 "second[1]", strerror(errno)) [all...] |