HomeSort by relevance Sort by last modified time
    Searched refs:EINTR (Results 1 - 25 of 1310) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/bionic/
close.cpp 36 if (rc == -1 && errno == EINTR) {
37 // POSIX says that if close returns with EINTR, the fd must not be closed.
40 // with the state after EINTR being undefined, and EINPROGRESS for the case where close
45 // but succeeded. So returning EINTR is wrong (because Linux always closes) and EINPROGRESS
sigwait.cpp 41 // __rt_sigtimedwait can return EAGAIN or EINTR, we need to loop
49 if (errno != EAGAIN && errno != EINTR) {
  /external/google-breakpad/src/common/linux/
eintr_wrapper.h 36 // signal and return EINTR. See man 7 signal.
43 } while (eintr_wrapper_result == -1 && errno == EINTR); \
51 if (eintr_wrapper_result == -1 && errno == EINTR) { \
  /external/libchrome/base/posix/
eintr_wrapper.h 6 // signal and return EINTR. See man 7 signal.
9 // caller will nonetheless see an EINTR in Debug builds.
31 } while (eintr_wrapper_result == -1 && errno == EINTR); \
42 } while (eintr_wrapper_result == -1 && errno == EINTR && \
53 if (eintr_wrapper_result == -1 && errno == EINTR) { \
  /external/libvncserver/libvncclient/
tls_none.c 41 errno = EINTR;
49 errno = EINTR;
  /external/ltp/testcases/kernel/syscalls/nanosleep/
nanosleep03.c 26 * nanosleep() should return with -1 value and sets errno to EINTR.
93 " by signal (%d) as expected", EINTR);
120 if (TEST_ERRNO != EINTR) {
123 EINTR);
128 "expected -1, errno:%d", TEST_RETURN, EINTR);
  /external/strace/tests/
rt_sigsuspend.c 58 if (EINTR == errno) {
107 if (EINTR == errno)
122 assert(EINTR == errno);
130 assert(EINTR == errno);
138 assert(EINTR == errno);
147 assert(EINTR == errno);
  /external/strace/tests-m32/
rt_sigsuspend.c 58 if (EINTR == errno) {
107 if (EINTR == errno)
122 assert(EINTR == errno);
130 assert(EINTR == errno);
138 assert(EINTR == errno);
147 assert(EINTR == errno);
  /external/strace/tests-mx32/
rt_sigsuspend.c 58 if (EINTR == errno) {
107 if (EINTR == errno)
122 assert(EINTR == errno);
130 assert(EINTR == errno);
138 assert(EINTR == errno);
147 assert(EINTR == errno);
  /device/generic/goldfish-opengl/system/OpenglSystemCommon/
ProcessPipe.cpp 49 } while (stat < 0 && errno == EINTR);
62 } while (stat < 0 && errno == EINTR);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigpause/
3-1.c 8 This program verifies that sigpause() returns -1 and sets errno to EINTR
16 3. Verify that sigpause returns -1 and sets errno to EINTR.
51 if (errno == EINTR) {
53 "and set errno to EINTR\n");
57 "set errno to EINTR\n");
61 if (errno == EINTR)
64 printf("Test FAILED: sigpause did not set errno to EINTR\n");
  /bionic/libc/kernel/uapi/asm-generic/
errno-base.h 25 #define EINTR 4
  /development/ndk/platforms/android-21/include/asm-generic/
errno-base.h 25 #define EINTR 4
  /development/ndk/platforms/android-9/include/asm-generic/
errno-base.h 18 #define EINTR 4
  /external/kernel-headers/original/uapi/asm-generic/
errno-base.h 7 #define EINTR 4 /* Interrupted system call */
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/fork/
14-1.c 93 while ((ret != 0) && (errno == EINTR));
102 while ((ret != 0) && (errno == EINTR));
127 while ((ret != 0) && (errno == EINTR));
140 while ((ret != 0) && (errno == EINTR));
  /external/syslinux/com32/lib/
fread.c 18 if (errno == EINTR || errno == EAGAIN)
fwrite.c 18 if (errno == EINTR || errno == EAGAIN)
  /external/syslinux/dos/
errno.h 7 #define EINTR 4 /* Interrupted system call */
  /external/valgrind/gdbserver_tests/
fork_chain.c 26 if (errno != EINTR) {
  /external/valgrind/memcheck/tests/
post-syscall.c 31 if (ret != -1 || errno != EINTR) {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/asm-generic/
errno-base.h 7 #define EINTR 4 /* Interrupted system call */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/asm-generic/
errno-base.h 7 #define EINTR 4 /* Interrupted system call */
  /prebuilts/ndk/r10/platforms/android-12/arch-arm/usr/include/asm-generic/
errno-base.h 18 #define EINTR 4
  /prebuilts/ndk/r10/platforms/android-12/arch-mips/usr/include/asm-generic/
errno-base.h 18 #define EINTR 4

Completed in 806 milliseconds

1 2 3 4 5 6 7 8 91011>>