Searched refs:errno (Results 51 - 75 of 2487) sorted by relevance

1234567891011>>

/external/fdlibm/
H A Dk_standard.c16 #include <errno.h>
104 errno = EDOM;
109 errno = EDOM;
118 errno = EDOM;
123 errno = EDOM;
134 errno = EDOM;
139 errno = EDOM;
151 errno = ERANGE;
153 errno = ERANGE;
165 errno
[all...]
H A Ds_ldexp.c15 #include <errno.h>
26 if(!ieee_finite(value)||value==0.0) errno = ERANGE;
/external/bison/lib/
H A Dmalloc.c33 #include <errno.h>
52 errno = ENOMEM;
H A Dcalloc.c33 #include <errno.h>
59 errno = ENOMEM;
69 errno = ENOMEM;
/external/chromium_org/components/nacl/loader/nonsfi/
H A Dirt_icache.cc7 #include <errno.h>
27 return errno;
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dsched_setscheduler.c62 errno =
74 errno = ENOSYS;
/external/chromium_org/sandbox/linux/tests/
H A Dtest_utils.cc7 #include <errno.h>
24 PCHECK(ECHILD == errno);
/external/libcxx/test/diagnostics/errno/
H A DAndroid.mk17 test_makefile := external/libcxx/test/diagnostics/errno/Android.mk
19 test_name := diagnostics/errno/cerrno
/external/qemu/util/
H A Dyield-android.c1 #include <errno.h>
16 if (ret == 1 || (ret < 0 && errno != -EINTR))
/external/chromium_org/third_party/webrtc/base/
H A Dlinuxfdwalk.c13 #include <errno.h>
46 // Have to clear errno to distinguish readdir() completion from failure.
47 while (errno = 0, (ent = readdir(dir)) != NULL) {
64 int saved_errno = errno;
73 errno = saved_errno;
76 errno = EBADF;
/external/e2fsprogs/lib/e2p/
H A Dfgetversion.c23 #include <errno.h>
50 save_errno = errno;
54 errno = save_errno;
63 extern int errno;
64 errno = EOPNOTSUPP;
H A Dfsetversion.c23 #include <errno.h>
51 save_errno = errno;
54 errno = save_errno;
61 extern int errno;
62 errno = EOPNOTSUPP;
/external/iptables/iptables/
H A Diptables-standalone.c36 #include <errno.h>
71 if (errno == EINVAL) {
74 iptc_strerror(errno));
77 iptc_strerror(errno));
79 if (errno == EAGAIN) {
/external/netcat/
H A Datomicio.c31 #include <errno.h>
54 if (errno == EINTR)
56 if ((errno == EAGAIN) || (errno == ENOBUFS)) {
62 errno = EPIPE;
/external/valgrind/main/none/tests/
H A Dsyscall-restart1.c4 #include <errno.h>
46 if (ret != -1 || errno != EINTR)
48 ret, strerror(errno), ch);
56 if (write(fds[1], "x", 1) != -1 || errno != EPIPE)
57 fprintf(stderr, "FAIL: expected write to fail with EPIPE, not %d\n", errno);
/external/openssl/crypto/
H A DLPdir_unix.c34 #include <errno.h>
71 errno = EINVAL;
75 errno = 0;
81 errno = ENOMEM;
89 int save_errno = errno; /* Probably not needed, but I'm paranoid */
92 errno = save_errno;
125 errno = EINVAL;
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
H A Dsignal_test.cc5 #include <errno.h>
18 EXPECT_EQ(errno, EFAULT);
19 EXPECT_EQ(errno, 0x2211);
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dspinlock_posix-inl.h35 #include <errno.h>
45 int save_errno = errno;
55 errno = save_errno;
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Dspinlock_posix-inl.h35 #include <errno.h>
45 int save_errno = errno;
55 errno = save_errno;
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dglob.cc12 #include <errno.h>
24 printf("%d %s\n", errno, strerror(errno));
/external/compiler-rt/test/msan/Linux/
H A Dglob.cc9 #include <errno.h>
19 printf("%d %s\n", errno, strerror(errno));
/external/fio/
H A Dhelpers.c2 #include <errno.h>
15 errno = ENOSYS;
30 errno = ENOSYS;
/external/oprofile/libutil/
H A Dop_deviceio.c20 #include <errno.h>
36 if (count < 0 && errno != EINTR && errno != EAGAIN) {
/external/qemu/android/base/files/
H A DScopedFd.h17 #include <errno.h>
53 int save_errno = errno;
56 errno = save_errno;
/external/strace/test/
H A Dx32_lseek.c14 #include <errno.h>
24 errno = 0;
34 printf("pos:%ld(0x%lx) errno:%m\n", r, r);
35 if (!errno)

Completed in 735 milliseconds

1234567891011>>