Home
last modified time | relevance | path

Searched refs:nonblocking (Results 1 – 25 of 109) sorted by relevance

12345

/netbsd-src/sys/dev/usb/
H A Dulpt.c676 int error = 0, nonblocking, timeout; in ulpt_do_read() local
686 nonblocking = 1; in ulpt_do_read()
688 nonblocking = 0; in ulpt_do_read()
690 if (nonblocking) in ulpt_do_read()
696 nonblocking, (u_long)uio->uio_resid, timeout)); in ulpt_do_read()
714 n, nonblocking, timeout)); in ulpt_do_read()
736 if (nonblocking == 0) { in ulpt_do_read()
/netbsd-src/crypto/external/bsd/openssl/dist/doc/man3/
H A DSSL_do_handshake.pod28 If the underlying BIO is B<nonblocking>, SSL_do_handshake() will also return
34 The action depends on the underlying BIO. When using a nonblocking socket,
61 for nonblocking BIOs. Call SSL_get_error() with the return value B<ret>
H A DSSL_accept.pod26 If the underlying BIO is B<nonblocking>, SSL_accept() will also return
33 The action depends on the underlying BIO. When using a nonblocking socket,
60 for nonblocking BIOs. Call SSL_get_error() with the return value B<ret>
H A DSSL_state_string.pod29 When using nonblocking sockets, the function call performing the handshake
33 For both blocking or nonblocking sockets, the details state information
H A DSSL_CTX_set_mode.pod53 avoid the misconception that nonblocking SSL_write() behaves like
54 nonblocking write().
67 In a nonblocking environment applications must be prepared to handle
69 Setting B<SSL_MODE_AUTO_RETRY> for a nonblocking B<BIO> will process
H A DSSL_connect.pod26 If the underlying BIO is B<nonblocking>, SSL_connect() will also return
33 The action depends on the underlying BIO. When using a nonblocking socket,
75 for nonblocking BIOs. Call SSL_get_error() with the return value B<ret>
H A DSSL_set_fd.pod23 inherit the behaviour of B<fd>. If B<fd> is nonblocking, the B<ssl> will
24 also have nonblocking behaviour.
H A DSSL_shutdown.pod57 If the underlying BIO is B<nonblocking>, SSL_shutdown() will also return
63 The action depends on the underlying BIO. When using a nonblocking socket,
153 It can occur if an action is needed to continue the operation for nonblocking
H A DSSL_set_bio.pod19 nonblocking then the B<ssl> object will also have nonblocking behaviour. This
H A DSSL_write.pod48 If the underlying BIO is B<nonblocking> the write functions will also return
56 nonblocking socket, nothing is to be done, but select() can be used to check
H A DSSL_read.pod75 If the underlying BIO is B<nonblocking>, a read function will also return when
86 When using a nonblocking socket, nothing is to be done, but select() can be
/netbsd-src/crypto/external/bsd/openssl.old/dist/doc/man3/
H A DSSL_do_handshake.pod28 If the underlying BIO is B<nonblocking>, SSL_do_handshake() will also return
34 The action depends on the underlying BIO. When using a nonblocking socket,
61 for nonblocking BIOs. Call SSL_get_error() with the return value B<ret>
H A DSSL_accept.pod26 If the underlying BIO is B<nonblocking>, SSL_accept() will also return
33 The action depends on the underlying BIO. When using a nonblocking socket,
60 for nonblocking BIOs. Call SSL_get_error() with the return value B<ret>
H A DSSL_state_string.pod29 When using nonblocking sockets, the function call performing the handshake
33 For both blocking or nonblocking sockets, the details state information
H A DSSL_CTX_set_mode.pod53 avoid the misconception that nonblocking SSL_write() behaves like
54 nonblocking write().
67 In a nonblocking environment applications must be prepared to handle
69 Setting B<SSL_MODE_AUTO_RETRY> for a nonblocking B<BIO> will process
H A DSSL_connect.pod26 If the underlying BIO is B<nonblocking>, SSL_connect() will also return
33 The action depends on the underlying BIO. When using a nonblocking socket,
75 for nonblocking BIOs. Call SSL_get_error() with the return value B<ret>
H A DSSL_set_fd.pod23 inherit the behaviour of B<fd>. If B<fd> is nonblocking, the B<ssl> will
24 also have nonblocking behaviour.
H A DSSL_shutdown.pod98 If the underlying BIO is B<nonblocking>, SSL_shutdown() will also return
104 The action depends on the underlying BIO. When using a nonblocking socket,
155 It can occur if an action is needed to continue the operation for nonblocking
H A DSSL_set_bio.pod19 nonblocking then the B<ssl> object will also have nonblocking behaviour. This
H A DOCSP_sendreq_new.pod46 OCSP_sendreq_nbio() performs nonblocking I/O on the OCSP request context
117 OCSP_sendreq_bio() does not support retries and so cannot handle nonblocking
H A DSSL_write.pod39 If the underlying BIO is B<nonblocking> the write functions will also return
47 nonblocking socket, nothing is to be done, but select() can be used to check
/netbsd-src/external/gpl2/xcvs/dist/src/
H A Dbuffer.c55 buf->nonblocking = false; in buf_initialize()
305 assert (buf->nonblocking); in buf_send_output()
334 int nonblocking; in buf_flush() local
339 nonblocking = buf->nonblocking; in buf_flush()
340 if (nonblocking && block) in buf_flush()
351 if (nonblocking && block) in buf_flush()
374 if (buf->nonblocking) in set_nonblock()
380 buf->nonblocking = true; in set_nonblock()
395 if (! buf->nonblocking) in set_block()
401 buf->nonblocking = false; in set_block()
H A Dbuffer.h48 bool nonblocking; member
/netbsd-src/external/bsd/nsd/dist/
H A Dacx_nlnetlabs.m48 # 2022-09-01 fix checking if nonblocking sockets work on OpenBSD.
13 # 2021-06-14 fix nonblocking test to use host instead of target for mingw test.
14 # 2021-05-17 fix nonblocking socket test from grep on mingw32 to mingw for
87 # ACX_CHECK_NONBLOCKING_BROKEN - see if nonblocking sockets really work.
948 dnl check if select and nonblocking sockets actually work.
951 dnl a nonblocking socket do not work, a new call to select is necessary.
954 AC_MSG_CHECKING([if nonblocking sockets work])
957 …ING_IS_BROKEN], 1, [Define if the network stack does not fully support nonblocking io (causes lowe…
995 /* test if select and nonblocking reads work well together */
999 then try to nonblocking read the 10 messages
[all …]
/netbsd-src/external/bsd/unbound/dist/
H A Dacx_nlnetlabs.m48 # 2022-09-01 fix checking if nonblocking sockets work on OpenBSD.
13 # 2021-06-14 fix nonblocking test to use host instead of target for mingw test.
14 # 2021-05-17 fix nonblocking socket test from grep on mingw32 to mingw for
87 # ACX_CHECK_NONBLOCKING_BROKEN - see if nonblocking sockets really work.
948 dnl check if select and nonblocking sockets actually work.
951 dnl a nonblocking socket do not work, a new call to select is necessary.
954 AC_MSG_CHECKING([if nonblocking sockets work])
957 …ING_IS_BROKEN], 1, [Define if the network stack does not fully support nonblocking io (causes lowe…
995 /* test if select and nonblocking reads work well together */
999 then try to nonblocking read the 10 messages
[all …]

12345