Searched refs:O_NONBLOCK (Results 1 - 25 of 129) sorted by relevance

123456

/illumos-gate/usr/src/lib/fm/libldom/sparc/
H A Dldom_utils.c43 (void) fcntl(notify_pipe[1], F_SETFL, O_NONBLOCK);
/illumos-gate/usr/src/lib/libbc/libc/sys/4.2/
H A Dopen.c47 flags |= O_NONBLOCK;
H A Dfcntl.c62 #define FLAGS_MASK (O_SYNC|O_NONBLOCK|O_CREAT|O_TRUNC|O_EXCL \
131 if (arg & O_NONBLOCK)
165 narg |= O_NONBLOCK;
/illumos-gate/usr/src/lib/libc/port/sys/
H A Dsignalfd.c36 oflags |= O_NONBLOCK;
H A Deventfd.c35 oflags |= O_NONBLOCK;
H A Dtimerfd.c34 oflags |= O_NONBLOCK;
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dattropen.c60 if ((fd = open64(file, O_RDONLY|O_NONBLOCK)) == -1) {
91 if ((fd = open(file, O_RDONLY|O_NONBLOCK)) == -1) {
/illumos-gate/usr/src/lib/libast/common/features/
H A Dfcntl.c245 #ifndef O_NONBLOCK
250 if (O_NONBLOCK > o_local) o_local = O_NONBLOCK;
293 #ifndef O_NONBLOCK
295 printf("#define O_NONBLOCK 0%o\n", o_local <<= 1);
310 #ifndef O_NONBLOCK
312 printf("#define O_NONBLOCK O_NDELAY\n");
/illumos-gate/usr/src/cmd/hal/tools/sunos/
H A Dhal-system-lcd-get-brightness-sunos.c49 if ((fd = open(device_file, O_RDONLY | O_NONBLOCK)) < 0) {
H A Dhal-system-lcd-set-brightness-sunos.c50 if ((fd = open(device_file, O_RDONLY | O_NONBLOCK)) < 0) {
/illumos-gate/usr/src/boot/sys/sys/
H A Dfcntl.h90 #define O_NONBLOCK 0x0004 /* no delay */ macro
180 #define FNONBLOCK O_NONBLOCK /* kernel */
181 #define FNDELAY O_NONBLOCK /* compat */
182 #define O_NDELAY O_NONBLOCK /* compat */
/illumos-gate/usr/src/lib/libdtrace/common/
H A Dio.sed.in64 SED_REPLACE(O_NONBLOCK)
H A Dio.d.in169 inline int O_NONBLOCK = @O_NONBLOCK@;
170 #pragma D binding "1.1" O_NONBLOCK
/illumos-gate/usr/src/lib/libbc/libc/sys/sys5/
H A Dfcntl.c61 #define FLAGS_MASK (O_SYNC|O_NONBLOCK|O_CREAT|O_TRUNC|O_EXCL \
128 if (arg & O_NONBLOCK)
160 narg |= O_NONBLOCK;
/illumos-gate/usr/src/lib/libbsm/common/
H A Ddevalloc.h77 #define DA_RDWR O_RDWR|O_CREAT|O_NONBLOCK
78 #define DA_RDONLY O_RDONLY|O_NONBLOCK
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/io/
H A Dtst.fds.c84 O_LARGEFILE | O_NOCTTY | O_NONBLOCK | O_NDELAY | O_RSYNC |
/illumos-gate/usr/src/cmd/hal/probing/acpi/
H A Dprobe-acpi.c57 if ((fd = open(device_file, O_RDONLY | O_NONBLOCK)) < 0) {
/illumos-gate/usr/src/lib/krb5/plugins/kdb/db2/libdb2/db/
H A Ddb.c59 (O_CREAT | O_EXCL | O_EXLOCK | O_NONBLOCK | O_RDONLY | \
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/inetd/
H A Dutil.c309 (void) fcntl(fd, F_SETFL, (flags & ~O_NONBLOCK));
316 (void) fcntl(fd, F_SETFL, (flags | O_NONBLOCK));
/illumos-gate/usr/src/lib/libcryptoutil/common/
H A Dkeyfile.c59 if ((fd = open(filename, O_RDONLY | O_NONBLOCK)) == -1) {
/illumos-gate/usr/src/lib/libnsl/nsl/
H A Dt_connect.c123 if (fctlflg & (O_NDELAY | O_NONBLOCK)) {
/illumos-gate/usr/src/lib/libbc/inc/include/sys/
H A Dfcntlcom.h79 #define O_NONBLOCK _FNONBLOCK macro
/illumos-gate/usr/src/cmd/ttymon/
H A Dttymon.c359 if ((fd = open(pmptr->p_device, O_RDONLY|O_NONBLOCK|O_NOCTTY)) < 0) {
408 } else if ((fd = open(pmptr->p_device, O_RDWR|O_NONBLOCK))
480 if ((tmpfd = open(pmptr->p_device, O_RDWR|O_NONBLOCK)) == -1) {
661 /* set O_NONBLOCK flag */
665 flag |= O_NONBLOCK;
/illumos-gate/usr/src/ucbhead/sys/
H A Dfcntl.h60 #define O_NONBLOCK 0200 /* Non-blocking I/O (POSIX) */ macro
/illumos-gate/usr/src/cmd/sendmail/libsm/
H A Dlocal.h142 ** The file mode may be changed to O_NONBLOCK or ~O_NONBLOCK
172 ret & ~O_NONBLOCK) == -1) \
188 ret | O_NONBLOCK) == -1) \

Completed in 146 milliseconds

123456