| /src/lib/libc/gen/ |
| errno.c | 1 /* $NetBSD: errno.c,v 1.6 2024/01/20 14:52:47 christos Exp $ */ 5 __RCSID("$NetBSD: errno.c,v 1.6 2024/01/20 14:52:47 christos Exp $"); 8 #include <errno.h> 11 int errno; variable
|
| errno_private.h | 28 #undef errno macro 29 extern int errno;
|
| /src/sys/lib/libsa/ |
| errno.c | 1 /* $NetBSD: errno.c,v 1.3 2005/12/11 12:24:46 christos Exp $ */ 36 int errno; variable
|
| strerror.c | 37 int errno; member in struct:mi 67 if (mi->errno == err)
|
| /src/tests/compat/linux/ |
| h_linux.c | 36 int errno = 0; variable
|
| /src/include/ |
| errno.h | 1 /* $NetBSD: errno.h,v 1.11 2008/03/03 06:57:48 dholland Exp $ */ 36 * from: @(#)errno.h 8.5 (Berkeley) 1/21/94 43 #include <sys/errno.h> 48 /* note: this appears in both errno.h and signal.h */ 54 #ifndef errno 55 #define errno (*__errno()) macro
|
| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
| sanitizer_errno.h | 12 // Defines errno to avoid including errno.h and its dependencies into sensitive 14 // It's ok to use errno.h directly when your file already depend on other system 38 #define errno (*__errno_location()) macro
|
| /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/ |
| sanitizer_errno.h | 11 // Defines errno to avoid including errno.h and its dependencies into sensitive 13 // It's ok to use errno.h directly when your file already depend on other system 36 #define errno (*__errno_location()) macro
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/ |
| sanitizer_errno.h | 11 // Defines errno to avoid including errno.h and its dependencies into sensitive 13 // It's ok to use errno.h directly when your file already depend on other system 36 #define errno (*__errno_location()) macro
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/ |
| errno.c | 18 #include <errno.h> 24 errno = 42; 30 #undef errno macro 34 int errno = 36; local
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/ |
| errno.c | 18 #include <errno.h> 24 errno = 42; 30 #undef errno macro 34 int errno = 36; local
|
| /src/sys/arch/zaurus/stand/zboot/ |
| unixsys.S | 51 .word errno 75 .global errno 76 errno: label
|
| /src/sys/arch/mvme68k/stand/bootsd/ |
| boot.c | 43 int errno; variable 61 printf("boot: %s: %s\n", file, strerror(errno));
|
| /src/sys/arch/mvme68k/stand/bootst/ |
| boot.c | 43 int errno; variable 72 printf("tapeboot: %s: %s\n", file, strerror(errno));
|
| /src/sys/arch/mvme68k/stand/netboot/ |
| conf.c | 34 int errno; variable
|
| /src/sys/arch/i386/stand/lib/test/ |
| sanamespace.h | 19 #undef errno macro
|
| /src/sys/arch/sun3/dev/ |
| xio.h | 47 u_char errno; /* out: error number */ member in struct:xd_iocmd
|
| /src/tests/kernel/ |
| t_mqueue.c | 12 #include <errno.h> 31 "mq_send 1 failed: %d", errno); local 35 "mq_send 2 failed: %d", errno); local 39 "mq_send 3 failed: %d", errno); local 43 "mq_send 4 failed: %d", errno); local 47 "mq_send 5 failed: %d", errno); local 51 "mq_send 6 failed: %d", errno); local 63 errno); local 70 "mq_receive 1 failed: %d", errno); local 75 "mq_receive 2 failed: %d", errno); local 80 "mq_receive 3 failed: %d", errno); local 85 "mq_receive 4 failed: %d", errno); local 90 "mq_receive 5 failed: %d", errno); local 95 "mq_receive 6 failed: %d", errno); local [all...] |
| t_fdrestart.c | 39 #include <errno.h> 88 error = errno; 89 ATF_REQUIRE_EQ_MSG(error, ERESTART, "errno=%d (%s)", error, 98 error = errno; 99 ATF_REQUIRE_EQ_MSG(error, EBADF, "errno=%d (%s)", error, 134 error = errno; 135 ATF_REQUIRE_EQ_MSG(error, ERESTART, "errno=%d (%s)", error, 144 error = errno; 145 ATF_REQUIRE_EQ_MSG(error, EBADF, "errno=%d (%s)", error, 172 "errno=%d (%s)", errno, strerror(errno)) local [all...] |
| /src/external/mpl/bind/dist/bin/tests/system/tcp/ans6/ |
| ans.py | 34 import errno namespace 67 if err not in (0, errno.EINPROGRESS): 68 log(f"{errno.errorcode[err]} on connect for socket {sock}") 84 log(f"{errno.errorcode[err]} for socket {sock}")
|
| /src/tests/libexec/ld.elf_so/ |
| t_dladdr.c | 93 "Verify dladdr(errno) returns libc.so (or self if static)"); 107 * libpthread.so), &errno will be in libc. 109 * If we're dynamically linked and multi-threaded, &errno would 113 ATF_CHECK_MSG(dladdr(&errno, &info) != 0, 114 "[errno @ %p] dladdr failed: %s", &errno, dlerror()); local 121 "[errno @ %p] dladdr found errno in self=%s, not in libc.so", 122 &errno, info.dli_fname); local
|
| /src/sys/arch/i386/stand/pxeboot/ |
| main.c | 56 int errno; variable 103 printf("boot: %s\n", strerror(errno)); 306 strerror(errno));
|
| /src/sys/arch/mvme68k/stand/libsa/ |
| bugdev.c | 41 int errno; variable
|
| /src/external/gpl3/binutils/dist/zlib/ |
| zutil.c | 137 * errno. We define it as a global variable to simplify porting. 140 int errno = 0; variable
|
| /src/external/gpl3/binutils.old/dist/zlib/ |
| zutil.c | 141 * errno. We define it as a global variable to simplify porting. 144 int errno = 0; variable
|