Home
last modified time | relevance | path

Searched refs:O_NDELAY (Results 1 – 25 of 5226) sorted by relevance

12345678910>>...210

/dports/comms/hylafax/hylafax-6.0.7/etc/
H A Dondelay.c33 #ifndef O_NDELAY
35 #define O_NDELAY O_NONBLOCK macro
37 #define O_NDELAY 0 macro
45 if (open(av[1], O_RDWR|O_NDELAY) < 0) { in main()
49 (void) fcntl(0, F_SETFL, fcntl(0, F_GETFL, 0) &~ O_NDELAY); in main()
/dports/graphics/urho3d/Urho3D-1.7.1/Source/Urho3D/IO/
H A DNamedPipe.cpp233 readHandle_ = open(serverReadName.CString(), O_RDONLY | O_NDELAY); in Open()
234 writeHandle_ = open(clientReadName.CString(), O_WRONLY | O_NDELAY); in Open()
255 readHandle_ = open(clientReadName.CString(), O_RDONLY | O_NDELAY); in Open()
256 writeHandle_ = open(serverReadName.CString(), O_WRONLY | O_NDELAY); in Open()
280 readHandle_ = open((pipePath + pipeName_ + "SR").CString(), O_RDONLY | O_NDELAY); in Read()
282 readHandle_ = open((pipePath + pipeName_ + "CR").CString(), O_RDONLY | O_NDELAY); in Read()
300 writeHandle_ = open((pipePath + pipeName_ + "CR").CString(), O_WRONLY | O_NDELAY); in Write()
302 writeHandle_ = open((pipePath + pipeName_ + "SR").CString(), O_WRONLY | O_NDELAY); in Write()
358 readHandle_ = open((pipePath + pipeName_ + "SR").CString(), O_RDONLY | O_NDELAY); in IsEof()
360 readHandle_ = open((pipePath + pipeName_ + "CR").CString(), O_RDONLY | O_NDELAY); in IsEof()
/dports/security/krb5-appl/krb5-appl-1.0.3/libpty/
H A Dgetpty.c70 if ((slaveret = _getpty(fd, O_RDWR|O_NDELAY, 0600, 0)) == 0) { in ptyint_getpty_ext()
82 *fd = open("/dev/ptym/clone", O_RDWR|O_NDELAY); /* HPUX*/ in ptyint_getpty_ext()
84 if (*fd < 0) *fd = open("/dev/ptmx",O_RDWR|O_NDELAY); /*Solaris*/ in ptyint_getpty_ext()
86 if (*fd < 0) *fd = open("/dev/ptc", O_RDWR|O_NDELAY); /* AIX */ in ptyint_getpty_ext()
87 if (*fd < 0) *fd = open("/dev/pty", O_RDWR|O_NDELAY); /* sysvimp */ in ptyint_getpty_ext()
/dports/devel/libowfat/libowfat-0.32/open/
H A Dopen_read.c6 #ifndef O_NDELAY
7 #define O_NDELAY 0 macro
11 return open(filename,O_RDONLY|O_NDELAY); in open_read()
H A Dopen_write.c6 #ifndef O_NDELAY
7 #define O_NDELAY 0 macro
11 return open(filename,O_WRONLY|O_CREAT|O_NDELAY,0644); in open_write()
H A Dopen_rw.c6 #ifndef O_NDELAY
7 #define O_NDELAY 0 macro
11 return open(filename,O_RDWR|O_CREAT|O_NDELAY,0644); in open_rw()
H A Dopen_trunc.c6 #ifndef O_NDELAY
7 #define O_NDELAY 0 macro
11 return open(filename,O_WRONLY|O_NDELAY|O_TRUNC|O_CREAT,0644); in open_trunc()
H A Dopen_append.c6 #ifndef O_NDELAY
7 #define O_NDELAY 0 macro
11 return open(filename,O_WRONLY|O_NDELAY|O_APPEND|O_CREAT,0600); in open_append()
H A Dopen_excl.c6 #ifndef O_NDELAY
7 #define O_NDELAY 0 macro
11 return open(filename,O_WRONLY|O_NDELAY|O_TRUNC|O_CREAT|O_EXCL,0600); in open_excl()
/dports/devel/libowfat/libowfat-0.32/unix/
H A Dndelay_off.c12 #ifndef O_NDELAY
13 #define O_NDELAY O_NONBLOCK macro
21 return fcntl(fd,F_SETFL,fcntl(fd,F_GETFL,0) & ~O_NDELAY); in ndelay_off()
H A Dndelay_on.c12 #ifndef O_NDELAY
13 #define O_NDELAY O_NONBLOCK macro
21 return fcntl(fd,F_SETFL,fcntl(fd,F_GETFL,0) | O_NDELAY); in ndelay_on()
/dports/devel/libowfat/libowfat-0.32/io/
H A Dio_block.c12 #ifndef O_NDELAY
13 #define O_NDELAY O_NONBLOCK macro
23 if (fcntl(d,F_SETFL,fcntl(d,F_GETFL,0) & ~O_NDELAY)==0) in io_block()
H A Dio_nonblock.c12 #ifndef O_NDELAY
13 #define O_NDELAY O_NONBLOCK macro
23 if (fcntl(d,F_SETFL,fcntl(d,F_GETFL,0) | O_NDELAY)==0) in io_nonblock()
/dports/comms/hylafax/hylafax-6.0.7/hfaxd/
H A DFIFO.c++49 clientFd = Sys::open(clientFIFOName, CONFIG_OPENFIFO|O_NDELAY); in initClientFIFO()
60 if (fcntl(clientFd, F_SETFL, fcntl(clientFd, F_GETFL, 0) | O_NDELAY) < 0) in initClientFIFO()
211 faxqFd = Sys::open(faxqFIFOName, O_WRONLY|O_NDELAY); in sendQueuerMsg()
214 faxqFd = Sys::open(faxqFIFOName, O_WRONLY|O_NDELAY); in sendQueuerMsg()
224 if (fcntl(faxqFd, F_SETFL, fcntl(faxqFd, F_GETFL, 0) &~ O_NDELAY) < 0) in sendQueuerMsg()
326 fd = Sys::open(fifoName, O_WRONLY|O_NDELAY); in sendModem()
329 int fd = Sys::open(fifoName, O_WRONLY|O_NDELAY); in sendModem()
/dports/cad/magic/magic-8.3.245/readline/readline-4.3/
H A Dshell.c164 #if !defined (O_NDELAY)
166 # define O_NDELAY FNDELAY macro
185 #ifdef O_NDELAY
186 bflags |= O_NDELAY;
/dports/devel/zpu-binutils/zpu-toolchain-1.0/toolchain/gdb/readline/
H A Dshell.c165 #if !defined (O_NDELAY)
167 # define O_NDELAY FNDELAY macro
186 #ifdef O_NDELAY
187 bflags |= O_NDELAY;
/dports/devel/zpu-gcc/zpu-toolchain-1.0/toolchain/gdb/readline/
H A Dshell.c165 #if !defined (O_NDELAY)
167 # define O_NDELAY FNDELAY macro
186 #ifdef O_NDELAY
187 bflags |= O_NDELAY;
/dports/databases/gqlplus/gqlplus-1.16/gqlplus-1.15/readline/
H A Dshell.c164 #if !defined (O_NDELAY)
166 # define O_NDELAY FNDELAY macro
185 #ifdef O_NDELAY
186 bflags |= O_NDELAY;
/dports/databases/gqlplus/gqlplus-1.16/readline/
H A Dshell.c164 #if !defined (O_NDELAY)
166 # define O_NDELAY FNDELAY macro
185 #ifdef O_NDELAY
186 bflags |= O_NDELAY;
/dports/shells/bash/bash-5.1/lib/readline/
H A Dshell.c181 #if !defined (O_NDELAY)
183 # define O_NDELAY FNDELAY macro
202 #ifdef O_NDELAY in sh_unset_nodelay_mode()
203 bflags |= O_NDELAY; in sh_unset_nodelay_mode()
/dports/devel/gdb/gdb-11.1/readline/readline/
H A Dshell.c181 #if !defined (O_NDELAY)
183 # define O_NDELAY FNDELAY macro
202 #ifdef O_NDELAY in sh_unset_nodelay_mode()
203 bflags |= O_NDELAY; in sh_unset_nodelay_mode()
/dports/devel/readline/readline-8.1/
H A Dshell.c181 #if !defined (O_NDELAY)
183 # define O_NDELAY FNDELAY macro
202 #ifdef O_NDELAY in sh_unset_nodelay_mode()
203 bflags |= O_NDELAY; in sh_unset_nodelay_mode()
/dports/devel/sunpromake/schily-2021-09-18/libschily/stdio/
H A Dfileluopen.c26 #ifndef O_NDELAY /* This is undefined on BeOS :-( */
27 #define O_NDELAY 0 macro
53 if (omode & (O_NDELAY|O_CREAT|O_TRUNC|O_EXCL)) {
/dports/devel/smake/schily-2021-09-18/libschily/stdio/
H A Dfileluopen.c26 #ifndef O_NDELAY /* This is undefined on BeOS :-( */
27 #define O_NDELAY 0 macro
53 if (omode & (O_NDELAY|O_CREAT|O_TRUNC|O_EXCL)) {
/dports/net/rscsi/schily-2021-09-18/libschily/stdio/
H A Dfileluopen.c26 #ifndef O_NDELAY /* This is undefined on BeOS :-( */
27 #define O_NDELAY 0 macro
53 if (omode & (O_NDELAY|O_CREAT|O_TRUNC|O_EXCL)) {

12345678910>>...210