Home
last modified time | relevance | path

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

12

/freebsd-13.1/crypto/openssl/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_set_bio.pod19 nonblocking then the B<ssl> object will also have nonblocking behaviour. This
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 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_CTX_set_read_ahead.pod24 many input bytes as possible (for nonblocking reads) or not. For example if
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
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_get_error.pod52 operation from a nonblocking B<BIO>.
64 to a nonblocking B<BIO> and it was unable to sent all data to the B<BIO>.
H A DSSL_want.pod36 nonblocking I/O. Error conditions are not handled and must be treated
H A DBIO_connect.pod58 Sets the socket to nonblocking mode.
H A DBIO_read.pod58 particular when the source/sink is nonblocking or of a certain type
H A DSSL_CTX_set_info_callback.pod67 on error or when IO might otherwise block and nonblocking is being used.
/freebsd-13.1/contrib/subversion/subversion/libsvn_repos/
H A Drepos.c1113 svn_boolean_t nonblocking, in lock_repos() argument
1121 err = svn_io_file_lock2(lockfile_path, exclusive, nonblocking, pool); in lock_repos()
1287 svn_boolean_t nonblocking, in get_repos() argument
1307 SVN_ERR(lock_repos(repos, exclusive, nonblocking, result_pool)); in get_repos()
1430 svn_boolean_t nonblocking, in svn_repos_upgrade2() argument
1449 SVN_ERR(get_repos(&repos, path, TRUE, nonblocking, FALSE, NULL, subpool, in svn_repos_upgrade2()
1682 svn_boolean_t nonblocking, in svn_repos_recover4() argument
1697 SVN_ERR(get_repos(&repos, path, TRUE, nonblocking, in svn_repos_recover4()
H A Ddeprecated.c184 svn_boolean_t nonblocking, in svn_repos_recover3() argument
195 return svn_repos_recover4(path, nonblocking, recovery_started, &rb, in svn_repos_recover3()
201 svn_boolean_t nonblocking, in svn_repos_recover2() argument
206 return svn_repos_recover3(path, nonblocking, in svn_repos_recover2()
221 svn_boolean_t nonblocking, in svn_repos_upgrade() argument
231 return svn_repos_upgrade2(path, nonblocking, recovery_started, &rb, pool); in svn_repos_upgrade()
/freebsd-13.1/contrib/sendmail/libmilter/
H A Dworker.c233 nonblocking(int fd, const char *name) in nonblocking() function
287 r = nonblocking(WR_PIPE, "WR_PIPE"); in mi_pool_controller_init()
290 r = nonblocking(RD_PIPE, "RD_PIPE"); in mi_pool_controller_init()
/freebsd-13.1/contrib/unbound/
H A Dacx_nlnetlabs.m410 # 2021-06-14 fix nonblocking test to use host instead of target for mingw test.
11 # 2021-05-17 fix nonblocking socket test from grep on mingw32 to mingw for
84 # ACX_CHECK_NONBLOCKING_BROKEN - see if nonblocking sockets really work.
945 dnl check if select and nonblocking sockets actually work.
948 dnl a nonblocking socket do not work, a new call to select is necessary.
951 AC_MSG_CHECKING([if nonblocking sockets work])
954 …ING_IS_BROKEN], 1, [Define if the network stack does not fully support nonblocking io (causes lowe…
989 /* test if select and nonblocking reads work well together */
993 then try to nonblocking read the 10 messages
994 then, nonblocking read must give EAGAIN
[all …]
/freebsd-13.1/contrib/ldns/
H A Dacx_nlnetlabs.m473 # ACX_CHECK_NONBLOCKING_BROKEN - see if nonblocking sockets really work.
911 dnl check if select and nonblocking sockets actually work.
914 dnl a nonblocking socket do not work, a new call to select is necessary.
917 AC_MSG_CHECKING([if nonblocking sockets work])
920 …ING_IS_BROKEN], 1, [Define if the network stack does not fully support nonblocking io (causes lowe…
955 /* test if select and nonblocking reads work well together */
959 then try to nonblocking read the 10 messages
960 then, nonblocking read must give EAGAIN
1030 /* now we want to get EAGAIN: nonblocking goodness */
1048 …ING_IS_BROKEN], 1, [Define if the network stack does not fully support nonblocking io (causes lowe…
/freebsd-13.1/contrib/subversion/subversion/include/
H A Dsvn_repos.h527 svn_boolean_t nonblocking,
542 svn_boolean_t nonblocking,
788 svn_boolean_t nonblocking,
805 svn_boolean_t nonblocking,
820 svn_boolean_t nonblocking,
H A Dsvn_io.h762 svn_boolean_t nonblocking,
782 svn_boolean_t nonblocking,
/freebsd-13.1/contrib/libpcap/
H A Dpcap-dag.c345 unsigned int nonblocking = pd->dag_flags & DAGF_NONBLOCK; in dag_read() local
380 if (nonblocking && (pd->dag_mem_top - pd->dag_mem_bottom < dag_record_size)) in dag_read()
386 if(!nonblocking && in dag_read()

12