HomeSort by relevance Sort by last modified time
    Searched refs:EINTR (Results 1 - 25 of 1083) 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
  /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/libxml2/include/
wsockcompat.h 39 #ifndef EINTR
40 #define EINTR WSAEINTR
  /external/ltp/testcases/kernel/syscalls/nanosleep/
nanosleep03.c 26 * nanosleep() should return with -1 value and sets errno to EINTR.
91 " by signal (%d) as expected", EINTR);
118 if (TEST_ERRNO != EINTR) {
121 EINTR);
126 "expected -1, errno:%d", TEST_RETURN, EINTR);
  /external/strace/tests/
rt_sigsuspend.c 59 if (EINTR == errno) {
108 if (EINTR == errno)
123 assert(EINTR == errno);
131 assert(EINTR == errno);
139 assert(EINTR == errno);
148 assert(EINTR == errno);
  /external/strace/tests-m32/
rt_sigsuspend.c 59 if (EINTR == errno) {
108 if (EINTR == errno)
123 assert(EINTR == errno);
131 assert(EINTR == errno);
139 assert(EINTR == errno);
148 assert(EINTR == errno);
  /external/strace/tests-mx32/
rt_sigsuspend.c 59 if (EINTR == errno) {
108 if (EINTR == errno)
123 assert(EINTR == errno);
131 assert(EINTR == errno);
139 assert(EINTR == errno);
148 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 24 #define EINTR 4
  /device/google/cuttlefish_common/common/libs/fs/
gce_fs.h 28 /* Used to retry syscalls that can return EINTR. */
33 } while (_rc == -1 && errno == EINTR); \
  /external/kernel-headers/original/uapi/asm-generic/
errno-base.h 8 #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.15-4.8/sysroot/usr/include/asm-generic/
errno-base.h 7 #define EINTR 4 /* Interrupted system call */
  /external/perf_data_converter/src/quipper/
run_command.cc 45 } while (read_sz < 0 && errno == EINTR);
118 } while (ret < 0 && errno == EINTR);
139 } while (read_errno_res < 0 && errno == EINTR);
149 while (waitpid(child, nullptr, 0) < 0 && errno == EINTR) {
165 while (waitpid(child, &exit_status, 0) < 0 && errno == EINTR) {
  /frameworks/compile/libbcc/lib/
FileBase.cpp 88 if (errno != EINTR) {
106 } else if (errno != EINTR) {
116 } else if (errno != EINTR) {
186 if (errno == EINTR) {
216 } while (errno == EINTR);
  /external/libcups/cups/
backchannel.c 71 while (status < 0 && errno != EINTR && errno != EAGAIN);
133 while (status < 0 && errno != EINTR && errno != EAGAIN);
154 if (errno != EINTR && errno != EAGAIN)
  /bionic/libc/upstream-freebsd/lib/libc/gen/
sleep.c 60 if (errno != EINTR)

Completed in 763 milliseconds

1 2 3 4 5 6 7 8 91011>>