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

1234567891011>>

/external/kernel-headers/original/uapi/linux/
H A Derrno.h1 #include <asm/errno.h>
/external/stlport/test/unit/
H A Derrno_header_test.c8 #include <errno.h>
H A Dtest_errno.cpp2 //those headers contains a errno macro definition without the underlying value
7 #include <errno.h>
8 #include <errno.h> // not typo, check errno def/undef/redef
32 //Using ERANGE improve the test as it means that the native errno.h file has really
34 errno = ERANGE;
36 CPPUNIT_ASSERT( errno == ERANGE );
37 errno = 0;
39 /* Note: in common, you can't write ::errno or std::errno,
[all...]
/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/compiler-rt/SDKs/darwin/usr/include/
H A Derrno.h1 /* ===-- errno.h - stub SDK header for compiler-rt --------------------------===
17 #include <sys/errno.h>
/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/chromium_org/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/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
H A Dtcdrain.c13 #include <errno.h>
19 errno = ENOSYS;
H A Dtcflow.c12 #include <errno.h>
18 errno = ENOSYS;
H A Dtcsendbreak.c14 #include <errno.h>
20 errno = ENOSYS;
/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/e2fsprogs/lib/e2p/
H A Dsetversion.c20 #include <errno.h>
34 extern int errno;
35 errno = EOPNOTSUPP;
/external/libcxx/test/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/fio/lib/
H A Dgetrusage.c1 #include <errno.h>
9 if (errno != EINVAL)
/external/openssl/crypto/
H A DLPdir_nyi.c35 errno = EINVAL;
40 errno = EINVAL;
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dsem_close.c56 errno = ENOSYS;
H A Dsem_unlink.c56 errno = ENOSYS;
/external/chromium_org/tools/android/forwarder2/
H A Dcommon.cc7 #include <errno.h>
17 LOG(ERROR) << msg << ": " << safe_strerror(errno);
21 const int errno_copy = errno;
24 errno = errno_copy;
/external/compiler-rt/SDKs/darwin/usr/include/sys/
H A Derrno.h1 /* ===-- errno.h - stub SDK header for compiler-rt --------------------------===
25 #define errno (*__error()) macro
/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 571 milliseconds

1234567891011>>