Searched refs:errno (Results 1 - 25 of 2487) sorted by relevance
1234567891011>>
/external/kernel-headers/original/uapi/linux/ |
H A D | errno.h | 1 #include <asm/errno.h>
|
/external/stlport/test/unit/ |
H A D | errno_header_test.c | 8 #include <errno.h>
|
H A D | test_errno.cpp | 2 //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 D | get-errno.c | 1 /* 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 D | pipe-safer.c | 24 #include <errno.h> 42 int e = errno; 44 errno = e; 52 errno = ENOSYS;
|
/external/compiler-rt/SDKs/darwin/usr/include/ |
H A D | errno.h | 1 /* ===-- errno.h - stub SDK header for compiler-rt --------------------------=== 17 #include <sys/errno.h>
|
/external/kernel-headers/original/uapi/asm-arm/asm/ |
H A D | errno.h | 1 #include <asm-generic/errno.h>
|
/external/kernel-headers/original/uapi/asm-arm64/asm/ |
H A D | errno.h | 1 #include <asm-generic/errno.h>
|
/external/kernel-headers/original/uapi/asm-x86/asm/ |
H A D | errno.h | 1 #include <asm-generic/errno.h>
|
/external/chromium_org/base/ |
H A D | scoped_clear_errno_unittest.cc | 5 #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 D | scoped_clear_errno.h | 8 #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 D | tcdrain.c | 13 #include <errno.h> 19 errno = ENOSYS;
|
H A D | tcflow.c | 12 #include <errno.h> 18 errno = ENOSYS;
|
H A D | tcsendbreak.c | 14 #include <errno.h> 20 errno = ENOSYS;
|
/external/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_syscall_generic.inc | 29 *rverrno = errno;
|
/external/e2fsprogs/lib/et/ |
H A D | internal.h | 14 #include <errno.h>
|
/external/e2fsprogs/lib/e2p/ |
H A D | setversion.c | 20 #include <errno.h> 34 extern int errno; 35 errno = EOPNOTSUPP;
|
/external/libcxx/test/depr/depr.c.headers/ |
H A D | errno_h.pass.cpp | 11 // test <errno.h> 13 #include <errno.h> 27 #ifndef errno 28 #error errno not defined
|
/external/fio/lib/ |
H A D | getrusage.c | 1 #include <errno.h> 9 if (errno != EINVAL)
|
/external/openssl/crypto/ |
H A D | LPdir_nyi.c | 35 errno = EINVAL; 40 errno = EINVAL;
|
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/ |
H A D | sem_close.c | 56 errno = ENOSYS;
|
H A D | sem_unlink.c | 56 errno = ENOSYS;
|
/external/chromium_org/tools/android/forwarder2/ |
H A D | common.cc | 7 #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 D | errno.h | 1 /* ===-- errno.h - stub SDK header for compiler-rt --------------------------=== 25 #define errno (*__error()) macro
|
/external/compiler-rt/test/msan/ |
H A D | errno.cc | 4 #include <errno.h> 12 errno = *p; 15 if (errno) printf("errno %d\n", errno);
|
Completed in 1316 milliseconds
1234567891011>>