Searched refs:EINTR (Results 1 - 25 of 384) sorted by relevance

1234567891011>>

/external/chromium_org/base/posix/
H A Deintr_wrapper.h6 // 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/chromium/base/
H A Deintr_wrapper.h6 // signal and return EINTR. See man 7 signal.
24 } while (__eintr_result__ == -1 && errno == EINTR); \
/external/chromium_org/third_party/openssl/openssl/crypto/rand/
H A Drand_egd.c162 #ifdef EINTR
163 case EINTR:
201 #ifdef EINTR
202 case EINTR:
227 #ifdef EINTR
228 case EINTR:
259 #ifdef EINTR
260 case EINTR:
/external/dropbear/
H A Datomicio.c51 if (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK)
53 if (errno == EINTR || errno == EAGAIN)
H A Dcli-authpasswd.c94 if (errno != EINTR)
101 while (waitpid(pid, &status, 0) < 0 && errno == EINTR)
/external/openssl/crypto/rand/
H A Drand_egd.c162 #ifdef EINTR
163 case EINTR:
201 #ifdef EINTR
202 case EINTR:
227 #ifdef EINTR
228 case EINTR:
259 #ifdef EINTR
260 case EINTR:
/external/kernel-headers/original/asm-generic/
H A Derrno-base.h7 #define EINTR 4 /* Interrupted system call */ macro
/external/valgrind/main/gdbserver_tests/
H A Dfork_chain.c26 if (errno != EINTR) {
H A Dclean_after_fork.c27 if (errno != EINTR) {
/external/valgrind/main/memcheck/tests/
H A Dpost-syscall.c31 if (ret != -1 || errno != EINTR) {
/external/chromium_org/third_party/openssl/openssl/crypto/des/
H A Denc_read.c158 #ifdef EINTR
159 if ((i == -1) && (errno == EINTR)) continue;
184 #ifdef EINTR
185 if ((i == -1) && (errno == EINTR)) continue;
H A Denc_writ.c166 #ifdef EINTR
167 if (errno == EINTR)
/external/openssh/
H A Datomicio.c65 if (errno == EINTR)
78 errno = EINTR;
120 if (errno == EINTR)
153 errno = EINTR;
/external/openssl/crypto/des/
H A Denc_read.c158 #ifdef EINTR
159 if ((i == -1) && (errno == EINTR)) continue;
184 #ifdef EINTR
185 if ((i == -1) && (errno == EINTR)) continue;
H A Denc_writ.c166 #ifdef EINTR
167 if (errno == EINTR)
/external/oprofile/libutil/
H A Dop_deviceio.c36 if (count < 0 && errno != EINTR && errno != EAGAIN) {
/external/qemu/distrib/sdl-1.2.15/src/thread/irix/
H A DSDL_syssem.c113 if ( errno == EINTR ) {
133 if ( errno == EINTR ) {
190 if ( errno == EINTR ) {
212 if ( errno == EINTR ) {
/external/ppp/pppd/plugins/
H A Dpassprompt.c77 if (errno == EINTR)
90 if (errno != EINTR) {
/external/qemu/
H A Dcompatfd.c40 if (errno == EINTR) {
57 if (len == -1 && errno == EINTR)
/external/qemu/hw/
H A Dgoldfish_memlog.c49 } while (ret < 0 && errno == EINTR);
80 } while (fd < 0 && errno == EINTR);
/external/libnfc-nxp/Linux_x86/
H A DphDal4Nfc_i2c.c199 if (errno == EINTR || errno == EAGAIN) {
216 if (errno == EINTR || errno == EAGAIN) {
252 if (errno == EINTR || errno == EAGAIN) {
/external/chromium_org/third_party/libusb/src/msvc/
H A Derrno.h28 #define EINTR 4 /* Interrupted function call */ macro
/external/chromium_org/v8/src/platform/
H A Dsocket.cc101 if (errno == EINTR) continue; // Retry after signal.
138 if (errno == EINTR) continue; // Retry after signal.
176 if (errno == EINTR) continue; // Retry after signal.
193 if (errno == EINTR) continue; // Retry after signal.
/external/netcat/
H A Datomicio.c54 if (errno == EINTR)
/external/valgrind/main/none/tests/
H A Dsyscall-restart1.c8 /* Make sure that a blocking syscall returns EINTR if hit by a signal,
46 if (ret != -1 || errno != EINTR)
47 fprintf(stderr, "FAIL: expected EINTR, not %d/%s/%c\n",

Completed in 494 milliseconds

1234567891011>>