HomeSort by: relevance | last modified time | path
    Searched refs:nonblocking (Results 1 - 8 of 8) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/doc/designs/ddd/
Makefile 13 ddd-02-conn-nonblocking \
14 ddd-02-conn-nonblocking-threads \
16 ddd-04-fd-nonblocking \
17 ddd-05-mem-nonblocking \
  /src/external/gpl2/xcvs/dist/src/
buffer.h 47 /* Nonzero if the buffer is in nonblocking mode. */
48 bool nonblocking; member in struct:buffer
190 return it, rather than EAGAIN, for nonblocking writes. */
buffer.c 55 buf->nonblocking = false;
271 * errno code. If the buffer has been set to be nonblocking, this
302 permitted in nonblocking mode. Adjust the buffer,
305 assert (buf->nonblocking);
327 * if the buffer is in nonblocking mode, put it into blocking mode for
334 int nonblocking; local
339 nonblocking = buf->nonblocking;
340 if (nonblocking && block)
351 if (nonblocking && block
    [all...]
  /src/sys/dev/usb/
ulpt.c 658 * This should respect nonblocking I/O status.
676 int error = 0, nonblocking, timeout; local
686 nonblocking = 1;
688 nonblocking = 0;
690 if (nonblocking)
695 DPRINTFN(3, ("ulptread nonblocking=%d uio_reside=%ld timeout=%d\n",
696 nonblocking, (u_long)uio->uio_resid, timeout));
713 DPRINTFN(4, ("ulptread: transfer %d bytes, nonblocking=%d timeout=%d\n",
714 n, nonblocking, timeout));
736 if (nonblocking == 0)
    [all...]
  /src/external/bsd/libpcap/dist/
pcap-dag.c 346 unsigned int nonblocking = pd->dag_flags & DAGF_NONBLOCK; local
381 if (nonblocking && (pd->dag_mem_top - pd->dag_mem_bottom < dag_record_size))
387 if(!nonblocking &&
  /src/external/bsd/ntp/dist/sntp/libevent/
evutil.c 324 unsigned long nonblocking = 1; local
325 if (ioctlsocket(fd, FIONBIO, &nonblocking) == SOCKET_ERROR) {
982 * the blocking and nonblocking resolver:
2593 * to make the socket nonblocking or close-on-exec with as few syscalls as
2631 * make the socket nonblocking or close-on-exec with as few syscalls as
2670 * fd[1] get read from fd[0]. Make both fds nonblocking and close-on-exec.
2677 Making the second socket nonblocking is a bit subtle, given that we
2679 do that for a nonblocking socket. But if the kernel gives us EAGAIN,
  /src/external/bsd/libevent/dist/
evutil.c 327 unsigned long nonblocking = 1; local
328 if (ioctlsocket(fd, FIONBIO, &nonblocking) == SOCKET_ERROR) {
985 * the blocking and nonblocking resolver:
2597 * to make the socket nonblocking or close-on-exec with as few syscalls as
2635 * make the socket nonblocking or close-on-exec with as few syscalls as
2674 * fd[1] get read from fd[0]. Make both fds nonblocking and close-on-exec.
2681 Making the second socket nonblocking is a bit subtle, given that we
2683 do that for a nonblocking socket. But if the kernel gives us EAGAIN,
  /src/external/bsd/nsd/dist/
configure 7695 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if nonblocking sockets work" >&5
7696 printf %s "checking if nonblocking sockets work... " >&6; }
7749 /* test if select and nonblocking reads work well together */
7753 then try to nonblocking read the 10 messages
7754 then, nonblocking read must give EAGAIN
7824 /* now we want to get EAGAIN: nonblocking goodness */

Completed in 73 milliseconds