Searched refs:O_NDELAY (Results 1 - 25 of 28) sorted by relevance

12

/freebsd-9.3-release/contrib/ntp/libntp/
H A Dsocket.c142 #undef O_NDELAY macro
157 #elif defined(O_NDELAY) /* generally the same as FNDELAY */
158 if (fcntl(fd, F_SETFL, O_NDELAY) < 0) {
159 msyslog(LOG_ERR, "fcntl(O_NDELAY) fails on fd #%d: %m",
H A Diosignal.c37 # define FNDELAY O_NDELAY
/freebsd-9.3-release/cddl/lib/libdtrace/
H A Dio.d103 inline int O_NDELAY = 0x0004;
104 #pragma D binding "1.1" O_NDELAY
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/io/
H A Dtst.fds.c84 O_LARGEFILE | O_NOCTTY | O_NONBLOCK | O_NDELAY | O_RSYNC |
/freebsd-9.3-release/contrib/libreadline/
H A Dinput.c80 #if !defined (O_NDELAY) && defined (O_NONBLOCK)
81 # define O_NDELAY O_NONBLOCK /* Posix style */ macro
208 #if defined (O_NDELAY)
213 fcntl (tty, F_SETFL, (tem | O_NDELAY));
225 #endif /* O_NDELAY */
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dinflow.c467 #if defined (O_NDELAY)
468 /* If O_NDELAY and O_NONBLOCK are defined to the same thing, we will
471 if (flags & O_NDELAY)
472 printf_filtered (" | O_NDELAY");
473 flags &= ~O_NDELAY;
/freebsd-9.3-release/sys/gnu/fs/xfs/
H A Dxfs_dmapi.h191 #define FILP_DELAY_FLAG(filp) ((filp->f_flags&(O_NDELAY|O_NONBLOCK)) ? \
/freebsd-9.3-release/contrib/gnu-sort/src/
H A Dsystem.h202 #if !defined O_NDELAY
203 # define O_NDELAY 0 macro
207 # define O_NONBLOCK O_NDELAY
/freebsd-9.3-release/sys/sys/
H A Dfcntl.h172 #define O_NDELAY O_NONBLOCK /* compat */ macro
/freebsd-9.3-release/contrib/ntp/ntpd/
H A Drefclock_tpro.c81 fd = open(device, O_RDONLY | O_NDELAY, 0777);
H A Drefclock_tsyncpci.c425 hBoard.file_descriptor = open(device, O_RDONLY | O_NDELAY, 0777);
/freebsd-9.3-release/contrib/libreadline/examples/rlfe/
H A Dos.h363 * O_NONBLOCK Same as O_NDELAY above.
367 * whereas open("/dev/ttyy08", O_RDWR|O_NDELAY |O_NOCTTY) went through.
369 * For this simple reason I now favour O_NDELAY. jw. 4.5.95
375 #if !defined(O_NONBLOCK) && defined(O_NDELAY)
376 # define O_NONBLOCK O_NDELAY
/freebsd-9.3-release/contrib/gdb/gdb/tui/
H A Dtui-io.c626 #ifdef O_NDELAY
627 (void) fcntl (tui_readline_pipe[0], F_SETFL, O_NDELAY);
/freebsd-9.3-release/lib/libedit/
H A Dread.c148 #if defined(F_SETFL) && defined(O_NDELAY)
152 if (fcntl(fd, F_SETFL, e & ~O_NDELAY) == -1)
156 #endif /* F_SETFL && O_NDELAY */
H A Dreadline.c2048 #elif defined(F_SETFL) && defined(O_NDELAY)
2051 if (fcntl(el->el_infd, F_SETFL, n|O_NDELAY) < 0)
/freebsd-9.3-release/usr.sbin/ppp/
H A Dmain.c100 #ifdef O_NDELAY
101 #define O_NONBLOCK O_NDELAY
/freebsd-9.3-release/usr.bin/chat/
H A Dchat.c105 #define O_NONBLOCK O_NDELAY
/freebsd-9.3-release/sys/i386/ibcs2/
H A Dibcs2_fcntl.c165 if (flags & O_NDELAY) r |= IBCS2_O_NONBLOCK;
/freebsd-9.3-release/sys/gnu/fs/xfs/FreeBSD/
H A Dxfs_ioctl.c1046 if (filp->f_flags & (O_NDELAY|O_NONBLOCK))
1275 if (filp->f_flags & (O_NDELAY|O_NONBLOCK))
1334 if (filp->f_flags & (O_NDELAY|O_NONBLOCK))
/freebsd-9.3-release/sys/compat/svr4/
H A Dsvr4_fcntl.c130 r |= (l & O_NDELAY) ? SVR4_O_NONBLOCK : 0;
/freebsd-9.3-release/usr.sbin/sicontrol/
H A Dsicontrol.c190 fd = open(CONTROLDEV, O_RDWR|O_NDELAY);
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/zpool/
H A Dzpool_vdev.c386 if ((fd = open(path, O_RDWR | O_NDELAY)) < 0)
/freebsd-9.3-release/contrib/tcsh/
H A Dsh.h368 #if !defined(O_RDONLY) || !defined(O_NDELAY)
/freebsd-9.3-release/usr.sbin/dconschat/
H A Ddconschat.c710 flags |= O_NDELAY;
/freebsd-9.3-release/cddl/contrib/opensolaris/lib/libzfs/common/
H A Dlibzfs_pool.c2377 if ((fd = open(path, O_RDWR | O_NDELAY)) < 0) {
3882 if ((fd = open(diskname, O_RDONLY|O_NDELAY)) >= 0) {
3975 if ((fd = open(path, O_RDWR | O_NDELAY)) < 0) {

Completed in 336 milliseconds

12