Home
last modified time | relevance | path

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

12345

/freebsd-13.1/contrib/apr/file_io/unix/
H A 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()
228 switch (blocking) { in file_pipe_block()
252 apr_int32_t blocking, in apr_file_pipe_create_ex() argument
261 file_pipe_block(in, out, blocking); in apr_file_pipe_create_ex()
[all …]
H A Dfiledup.c93 (*new_file)->blocking = old_file->blocking; in file_dup()
H A 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-13.1/contrib/llvm-project/compiler-rt/lib/profile/
H A 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-13.1/contrib/ntp/lib/isc/win32/
H A Dentropy.c84 fillpool(isc_entropy_t *ent, unsigned int desired, isc_boolean_t blocking) { in fillpool() argument
117 REQUIRE(!blocking); in fillpool()
190 if (blocking && remaining != 0) { in fillpool()
206 got = get_from_callback(source, remaining, blocking); in fillpool()
/freebsd-13.1/contrib/ntp/lib/isc/
H A Dentropy.c479 isc_boolean_t blocking) in get_from_callback() argument
494 result = cbs->startfunc(source, cbs->arg, blocking); in get_from_callback()
503 result = cbs->getfunc(source, cbs->arg, blocking); in get_from_callback()
538 isc_boolean_t goodonly, partial, blocking; in isc_entropy_getdata() local
546 blocking = ISC_TF((flags & ISC_ENTROPY_BLOCKING) != 0); in isc_entropy_getdata()
579 fillpool(ent, fillcount, blocking); in isc_entropy_getdata()
597 fillpool(ent, THRESHOLD_BITS, blocking); in isc_entropy_getdata()
1155 kbdstart(isc_entropysource_t *source, void *arg, isc_boolean_t blocking) { in kbdstart() argument
1165 if (! blocking) in kbdstart()
1192 kbdget(isc_entropysource_t *source, void *arg, isc_boolean_t blocking) { in kbdget() argument
[all …]
/freebsd-13.1/contrib/llvm-project/libcxx/include/
H A 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-13.1/contrib/ntp/lib/isc/include/isc/
H A Dentropy.h66 void *arg, isc_boolean_t blocking);
68 void *arg, isc_boolean_t blocking);
/freebsd-13.1/crypto/openssl/doc/man3/
H A 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:
H A 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.
H A 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.
H A DSSL_rstate_string.pod25 consisting of header and body. When working in a blocking environment,
H A DSSL_state_string.pod33 For both blocking or nonblocking sockets, the details state information
/freebsd-13.1/contrib/ntp/lib/isc/unix/
H A Dentropy.c250 fillpool(isc_entropy_t *ent, unsigned int desired, isc_boolean_t blocking) { in fillpool() argument
282 REQUIRE(!blocking); in fillpool()
352 if (blocking && remaining != 0) { in fillpool()
371 got = get_from_callback(source, remaining, blocking); in fillpool()
/freebsd-13.1/share/dtrace/
H A DMakefile10 SCRIPTS= blocking \
/freebsd-13.1/usr.sbin/rpc.lockd/
H A Dlockd_lock.c88 int blocking; /* blocking lock or not */ member
174 const int state, const int status, const int flags, const int blocking);
436 const int state, const int status, const int flags, const int blocking) in fill_file_lock() argument
448 fl->blocking = blocking; in fill_file_lock()
944 exist_lock->status, exist_lock->flags, exist_lock->blocking);
961 exist_lock->status, exist_lock->flags, exist_lock->blocking);
1239 fl->blocking = 0; in add_blockingfilelock()
1434 if (fl->blocking == 1) { in lock_partialfilelock()
/freebsd-13.1/etc/mail/
H A 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-13.1/contrib/kyua/admin/
H A Dtravis-build.sh60 -- complete a test run because many of our tests are blocking.
/freebsd-13.1/sys/contrib/vchiq/interface/vchiq_arm/
H A Dvchiq_ioctl.h80 int blocking; member
/freebsd-13.1/contrib/apr/include/
H A Dapr_file_io.h730 apr_int32_t blocking,
756 apr_int32_t blocking,
/freebsd-13.1/contrib/apr/include/arch/unix/
H A Dapr_arch_file_io.h102 enum {BLK_UNKNOWN, BLK_OFF, BLK_ON } blocking; member
/freebsd-13.1/contrib/apr/network_io/unix/
H A 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-13.1/sys/contrib/device-tree/Bindings/mailbox/
H A Dst,stm32-ipcc.yaml10 The IPCC block provides a non blocking signaling mechanism to post and
/freebsd-13.1/sys/contrib/device-tree/Bindings/power/supply/
H A Dsbs,sbs-battery.yaml54 compliant charger it should be disabled via this property to avoid blocking
/freebsd-13.1/contrib/libpcap/
H A DTODO30 the descriptor into non-blocking mode)

12345