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

1234567891011>>

/external/syslinux/gpxe/src/core/
H A Derrno.c1 #include <errno.h>
7 * This file provides the global variable #errno.
18 int errno; variable
/external/kernel-headers/original/uapi/linux/
H A Derrno.h1 #include <asm/errno.h>
/external/ltp/testcases/open_posix_testsuite/conformance/definitions/errno_h/
H A D1-1-buildonly.c6 #include <errno.h>
H A D2-1-buildonly.c2 *The <errno.h> header shall provide a
3 *declaration for errno
7 #include <errno.h>
13 errno_test = errno;
/external/bison/lib/
H A Dget-errno.c1 /* get-errno.c - get and set errno.
22 #include "get-errno.h"
24 #include <errno.h>
26 /* Get and set errno. A source file that needs to set or get errno,
27 but doesn't need to test for specific errno values, can use these
29 defines EQUAL should not include <errno.h>, since <errno.h> might
30 define EQUAL; such a file can include <get-errno
[all...]
H A Dpipe-safer.c24 #include <errno.h>
42 int e = errno;
44 errno = e;
52 errno = ENOSYS;
/external/kernel-headers/original/uapi/asm-arm/asm/
H A Derrno.h1 #include <asm-generic/errno.h>
/external/kernel-headers/original/uapi/asm-arm64/asm/
H A Derrno.h1 #include <asm-generic/errno.h>
/external/kernel-headers/original/uapi/asm-x86/asm/
H A Derrno.h1 #include <asm-generic/errno.h>
/external/syslinux/core/
H A Derrno.c2 #include <errno.h>
4 __export int errno; variable
/external/libchrome/base/
H A Dscoped_clear_errno_unittest.cc5 #include <errno.h>
13 errno = 1;
16 EXPECT_EQ(0, errno);
18 EXPECT_EQ(1, errno);
22 errno = 1;
25 errno = 2;
27 EXPECT_EQ(2, errno);
H A Dscoped_clear_errno.h8 #include <errno.h>
14 // Simple scoper that saves the current value of errno, resets it to 0, and on
18 ScopedClearErrno() : old_errno_(errno) {
19 errno = 0;
22 if (errno == 0)
23 errno = old_errno_;
/external/elfutils/bionic-fixup/
H A Dargp.h23 #include <errno.h>
/external/jemalloc/include/msvc_compat/
H A Dwindows_extra.h4 #include <errno.h>
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_syscall_generic.inc29 *rverrno = errno;
/external/e2fsprogs/lib/et/
H A Dinternal.h14 #include <errno.h>
/external/syslinux/dos/
H A Dperror.c2 #include <errno.h>
6 printf("%s: error %s\n", msg, errno);
/external/openssh/openbsd-compat/
H A Dbsd-setres_id.c36 errno = ENOSYS;
41 saved_errno = errno;
42 error("setregid %u: %.100s", rgid, strerror(errno));
43 errno = saved_errno;
48 saved_errno = errno;
49 error("setegid %u: %.100s", (u_int)egid, strerror(errno));
50 errno = saved_errno;
54 saved_errno = errno;
55 error("setgid %u: %.100s", rgid, strerror(errno));
56 errno
[all...]
/external/e2fsprogs/lib/e2p/
H A Dsetversion.c21 #include <errno.h>
35 extern int errno;
36 errno = EOPNOTSUPP;
/external/libcxx/test/std/depr/depr.c.headers/
H A Derrno_h.pass.cpp11 // test <errno.h>
13 #include <errno.h>
27 #ifndef errno
28 #error errno not defined
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_getscheduler/
H A D4-1.c16 #include <errno.h>
25 if (result != -1 && errno == 0) {
30 if (errno != 0) {
/external/fio/lib/
H A Dgetrusage.c1 #include <errno.h>
9 if (errno != EINVAL)
/external/syslinux/com32/lib/
H A Dfdopendir.c7 #include <errno.h>
13 errno = ENOSYS;
H A Dperror.c5 #include <errno.h>
11 fprintf(stderr, "%s: error %d\n", s, errno);
/external/compiler-rt/test/msan/
H A Derrno.cc4 #include <errno.h>
12 errno = *p;
15 if (errno) printf("errno %d\n", errno);

Completed in 2735 milliseconds

1234567891011>>