Home
last modified time | relevance | path

Searched refs:EINTR (Results 1 – 25 of 254) sorted by relevance

1234567891011

/minix/crypto/external/bsd/openssl/dist/crypto/rand/
H A Drand_egd.c162 # ifdef EINTR in RAND_query_egd_bytes()
163 case EINTR: in RAND_query_egd_bytes()
197 # ifdef EINTR in RAND_query_egd_bytes()
198 case EINTR: in RAND_query_egd_bytes()
220 # ifdef EINTR in RAND_query_egd_bytes()
221 case EINTR: in RAND_query_egd_bytes()
249 # ifdef EINTR in RAND_query_egd_bytes()
250 case EINTR: in RAND_query_egd_bytes()
/minix/crypto/external/bsd/openssl/lib/libdes/
H A Doenc_read.c150 #ifdef EINTR in des_enc_read()
151 if ((i == -1) && (errno == EINTR)) continue; in des_enc_read()
172 #ifdef EINTR in des_enc_read()
173 if ((i == -1) && (errno == EINTR)) continue; in des_enc_read()
H A Doenc_writ.c158 #ifdef EINTR in des_enc_write()
159 if (errno == EINTR) in des_enc_write()
/minix/tests/fs/fifofs/
H A Dt_fifo.c46 if (errno == EINTR) in child_writer()
140 if (errno == EINTR) in run()
161 if (errno == EINTR) { in run()
197 if (errno != EINTR) { in run()
/minix/crypto/external/bsd/openssl/dist/crypto/des/
H A Denc_read.c155 # ifdef EINTR in OPENSSL_IMPLEMENT_GLOBAL()
156 if ((i == -1) && (errno == EINTR)) in OPENSSL_IMPLEMENT_GLOBAL()
183 # ifdef EINTR in OPENSSL_IMPLEMENT_GLOBAL()
184 if ((i == -1) && (errno == EINTR)) in OPENSSL_IMPLEMENT_GLOBAL()
H A Denc_writ.c167 # ifdef EINTR in DES_enc_write()
168 if (errno == EINTR) in DES_enc_write()
/minix/minix/tests/
H A Dtest76.c57 if (errno != EINTR) e(4); in test76a()
90 if (errno != EINTR) e(12); in test76a()
153 if (errno != EINTR) e(10); in test76b()
165 if (errno != EINTR) e(14); in test76b()
213 if (errno != EINTR) e(7); in test76c()
287 if (write(pfd[1], buf, 3) < 0 && errno != EINTR) in test76d()
410 if (left > 0 && errno != EINTR) e(5); in test76e()
H A Dtest5.c227 if (errno != EINTR && -errno != EINTR) e(29); in test5e()
306 if (errno != EINTR) e(8); in test5h()
/minix/lib/libc/rpc/
H A Dsvc_run.c91 if ((errno == EINTR || errno == EBADF) && probs < 100) { in __weak_alias()
96 if (errno == EINTR) { in __weak_alias()
/minix/crypto/external/bsd/heimdal/dist/lib/roken/
H A Dnet_read.c56 if (errno == EINTR) in net_read()
107 if (rk_SOCK_ERRNO == EINTR) in net_read()
H A Dnet_write.c56 if (errno == EINTR) in net_write()
98 if (errno == EINTR) in net_write()
/minix/crypto/external/bsd/heimdal/dist/lib/krb5/
H A Dnet_write.c76 if (rk_SOCK_ERRNO == EINTR) in krb5_net_write_block()
106 if (errno == EINTR) in krb5_net_write_block()
/minix/tests/lib/libc/gen/
H A Dt_sleep.c99 ret = (errno == EINTR ? 0 : errno); in do_nanosleep()
113 ret = (errno == EINTR ? 0 : errno); in do_select()
127 ret = (errno == EINTR ? 0 : errno); in do_poll()
174 ATF_REQUIRE_MSG(kerrno == EINTR, "kevent: %s", strerror(errno)); in do_kevent()
/minix/external/bsd/libevent/dist/
H A Dutil-internal.h79 ((e) == EINTR || (e) == EAGAIN)
82 ((e) == EINTR || (e) == EINPROGRESS)
85 ((e) == EINTR || (e) == EAGAIN || (e) == ECONNABORTED)
/minix/external/bsd/libarchive/dist/libarchive/
H A Darchive_write_set_compression_program.c172 } while (ret == -1 && errno == EINTR); in child_write()
195 } while (ret == -1 && errno == EINTR); in child_write()
291 } while (bytes_read == -1 && errno == EINTR); in archive_compressor_program_finish()
327 while (waitpid(state->child, &status, 0) == -1 && errno == EINTR) in archive_compressor_program_finish()
/minix/external/bsd/bind/dist/lib/isc/unix/
H A Dentropy.c92 if (errno == EAGAIN || errno == EINTR) in get_from_filesource()
137 if (errno == EWOULDBLOCK || errno == EINTR || in get_from_usocketsource()
152 if (errno == EWOULDBLOCK || errno == EINTR || in get_from_usocketsource()
193 if (errno == EWOULDBLOCK || errno == EINTR) in get_from_usocketsource()
210 errno == EINTR) in get_from_usocketsource()
/minix/lib/libc/compat/arch/powerpc/sys/
H A Dcompat_sigsuspend13.S15 b _C_LABEL(__cerror) # always terminates with EINTR
/minix/lib/libc/compat/arch/sparc/sys/
H A Dcompat_sigsuspend.S55 ERROR() ! always terminates with EINTR
/minix/usr.bin/ftp/
H A Dssl.c116 if (errno == EINTR) in fetch_writev()
133 if (errno == EINTR) in fetch_writev()
320 if (errno == EAGAIN || errno == EINTR) in fetch_nonssl_read()
417 if (errno == EINTR) in fetch_read()
435 if (errno == EINTR) in fetch_read()
/minix/crypto/external/bsd/openssl/dist/crypto/bio/
H A Dbss_sock.c258 # ifdef EINTR in BIO_sock_non_fatal_error()
259 case EINTR: in BIO_sock_non_fatal_error()
H A Dbss_fd.c284 # ifdef EINTR in BIO_fd_non_fatal_error()
285 case EINTR: in BIO_fd_non_fatal_error()
/minix/external/bsd/bind/dist/unit/atf-src/atf-run/
H A Dio.cpp248 if (errno == EINTR) in safe_poll()
263 while ((ret = ::read(fd, buffer, nbytes)) == -1 && errno == EINTR) {} in safe_read()
265 INV(errno != EINTR); in safe_read()
/minix/external/bsd/atf/dist/tools/
H A Dio.cpp243 if (errno == EINTR) in safe_poll()
258 while ((ret = ::read(fd, buffer, nbytes)) == -1 && errno == EINTR) {} in safe_read()
260 assert(errno != EINTR); in safe_read()
/minix/minix/lib/libblockdriver/
H A Ddriver_st.c65 if (r == EINTR && !running) in blockdriver_task()
/minix/external/bsd/less/dist/
H A Dos.c173 #ifdef EINTR
174 if (errno == EINTR)

1234567891011