Home
last modified time | relevance | path

Searched refs:blocking (Results 1 – 25 of 113) sorted by relevance

12345

/freebsd-12-stable/contrib/apr/file_io/unix/
Dpipe.c68 thepipe->blocking = BLK_ON; in pipeblock()
104 thepipe->blocking = BLK_OFF; in pipenonblock()
113 if (thepipe->blocking != BLK_OFF) { /* blocking or unknown state */ in apr_file_pipe_timeout_set()
118 if (thepipe->blocking != BLK_ON) { /* non-blocking or unknown state */ in apr_file_pipe_timeout_set()
147 (*file)->blocking = BLK_UNKNOWN; /* app needs to make a timeout call */ in apr_os_pipe_put_ex()
194 (*in)->blocking = BLK_ON; in file_pipe_create()
210 (*out)->blocking = BLK_ON; in file_pipe_create()
226 static void file_pipe_block(apr_file_t **in, apr_file_t **out, apr_int32_t blocking) in file_pipe_block() argument
228 switch (blocking) { in file_pipe_block()
252 apr_int32_t blocking, in apr_file_pipe_create_ex() argument
[all …]
Dfiledup.c93 (*new_file)->blocking = old_file->blocking; in file_dup()
Dopen.c215 (*new)->blocking = BLK_ON; in apr_file_open()
294 (*file)->blocking = BLK_UNKNOWN; /* in case it is a pipe */ in apr_os_file_put()
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/profile/
DWindowsMMap.c128 int lock(HANDLE handle, DWORD lockType, BOOL blocking) { in lock() argument
130 if (!blocking) in lock()
141 if (!blocking && dw == ERROR_LOCK_VIOLATION) in lock()
163 BOOL blocking = (operation & LOCK_NB) == 0; in flock() local
168 return lock(handle, LOCKFILE_EXCLUSIVE_LOCK, blocking); in flock()
171 return lock(handle, 0, blocking); in flock()
/freebsd-12-stable/contrib/llvm-project/libcxx/include/
Dshared_mutex31 void lock(); // blocking
36 void lock_shared(); // blocking
54 void lock(); // blocking
63 void lock_shared(); // blocking
82 explicit shared_lock(mutex_type& m); // blocking
100 void lock(); // blocking
165 void lock() _LIBCPP_THREAD_SAFETY_ANNOTATION(acquire_capability()); // blocking
170 void lock_shared() _LIBCPP_THREAD_SAFETY_ANNOTATION(acquire_shared_capability()); // blocking
/freebsd-12-stable/crypto/openssl/doc/man3/
DBIO_should_retry.pod77 If the underlying I/O structure is in a blocking mode almost all current
84 retry even if the underlying I/O structure is blocking, if a handshake
89 While an application may retry a failed non blocking call immediately
98 conditions of several non blocking BIOs in a single select() call
106 is to use non blocking I/O and use a timeout on the select() (or
111 The OpenSSL ASN1 functions cannot gracefully deal with non blocking I/O:
DBIO_s_connect.pod88 BIO_set_nbio() sets the non blocking I/O flag to B<n>. If B<n> is
89 zero then blocking I/O is set. If B<n> is 1 then non blocking I/O
92 non blocking I/O is set during the connect process.
100 call BIO_should_retry() should be used for non blocking connect BIOs
105 If blocking I/O is set then a non positive return value from any
124 If non blocking I/O is set then retries will be requested as appropriate.
DBIO_read.pod62 One technique sometimes used with blocking sockets is to use a system call
69 should be combined with non blocking I/O so successive reads will request
70 a retry instead of blocking.
DBIO_s_accept.pod85 BIO_set_nbio_accept() sets the accept socket to blocking mode
86 (the default) if B<n> is 0 or non blocking mode if B<n> is 1.
108 connection, or request a retry in non blocking mode.
DSSL_state_string.pod33 For both blocking or nonblocking sockets, the details state information
DSSL_rstate_string.pod25 consisting of header and body. When working in a blocking environment,
DBIO_f_ssl.pod101 call BIO_should_retry() should be used for non blocking connect BIOs
108 is non blocking they can still request a retry in exceptional
115 an SSL BIO using a blocking transport will never request a
DSSL_CTX_set_mode.pod73 In a blocking environment, applications are not always prepared to
79 Turning off B<SSL_MODE_AUTO_RETRY> can be useful with blocking B<BIO>s in case
DSSL_read.pod68 If the underlying BIO is B<blocking>, a read function will only return once the
93 In this case the read function can be called without blocking or actually
/freebsd-12-stable/share/dtrace/
Dblocking27 * $FreeBSD: stable/12/share/dtrace/blocking 288644 2015-10-04 00:40:12Z pjd $
34 * usage: blocking <execname>
DMakefile9 SCRIPTS= blocking \
/freebsd-12-stable/usr.sbin/rpc.lockd/
Dlockd_lock.c88 int blocking; /* blocking lock or not */ member
174 const int state, const int status, const int flags, const int blocking);
448 const int state, const int status, const int flags, const int blocking) in fill_file_lock() argument
460 fl->blocking = blocking; in fill_file_lock()
956 exist_lock->status, exist_lock->flags, exist_lock->blocking);
973 exist_lock->status, exist_lock->flags, exist_lock->blocking);
1251 fl->blocking = 0; in add_blockingfilelock()
1446 if (fl->blocking == 1) { in lock_partialfilelock()
/freebsd-12-stable/etc/mail/
DREADME51 site. No set of anti-spam tools will block all spam without blocking some
53 to prevent as much spam as possible without blocking legitimate mail.
/freebsd-12-stable/contrib/apr/include/
Dapr_file_io.h730 apr_int32_t blocking,
756 apr_int32_t blocking,
/freebsd-12-stable/sys/contrib/vchiq/interface/vchiq_arm/
Dvchiq_ioctl.h80 int blocking; member
/freebsd-12-stable/contrib/apr/network_io/unix/
Dsockopt.c35 #error Please teach APR how to make sockets blocking on your platform. in soblock()
61 #error Please teach APR how to make sockets non-blocking on your platform. in sononblock()
/freebsd-12-stable/contrib/apr/include/arch/unix/
Dapr_arch_file_io.h102 enum {BLK_UNKNOWN, BLK_OFF, BLK_ON } blocking; member
/freebsd-12-stable/share/examples/ipfilter/rules/
Dfirewall7 Run the perl script "mkfilters". This will generate a list of blocking
/freebsd-12-stable/contrib/libpcap/
DTODO30 the descriptor into non-blocking mode)
/freebsd-12-stable/sys/contrib/vchiq/interface/vchi/message_drivers/
Dmessage.h101 struct semaphore *blocking; member

12345