Home
last modified time | relevance | path

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

/linux/arch/sparc/include/uapi/asm/
H A Dfcntl.h13 #define O_NDELAY 0x0004 macro
15 #define O_NDELAY (0x0004 | O_NONBLOCK) macro
/linux/tools/include/uapi/asm-generic/
H A Dfcntl.h
/linux/include/uapi/asm-generic/
H A Dfcntl.h94 #ifndef O_NDELAY
95 #define O_NDELAY O_NONBLOCK macro
/linux/rust/kernel/fs/
H A Dfile.rs70 pub const O_NDELAY: u32 = bindings::O_NDELAY; constant
/linux/include/linux/
H A Dfcntl.h11 O_APPEND | O_NDELAY | O_NONBLOCK | __O_SYNC | O_DSYNC | \
/linux/tools/perf/trace/beauty/
H A Dopen_flags.c55 #elif O_NDELAY in open__scnprintf_flags()
/linux/Documentation/driver-api/tty/
H A Dn_gsm.rst55 fd = open(SERIAL_PORT, O_RDWR | O_NOCTTY | O_NDELAY);
152 fd = open(SERIAL_PORT, O_RDWR | O_NOCTTY | O_NDELAY);
/linux/fs/
H A Dioctl.c351 if (O_NONBLOCK != O_NDELAY) in ioctl_fionbio()
352 flag |= O_NDELAY; in ioctl_fionbio()
/linux/drivers/block/aoe/
H A Daoechr.c239 if (filp->f_flags & O_NDELAY) { in aoechr_read()
/linux/tools/testing/selftests/net/
H A Dtcp_mmap.c190 fcntl(fd, F_SETFL, O_NDELAY); in child_thread()
/linux/fs/overlayfs/
H A Dfile.c62 #define OVL_SETFL_MASK (O_APPEND | O_NONBLOCK | O_NDELAY | O_DIRECT)
/linux/tools/testing/selftests/pidfd/
H A Dpidfd_file_handle_test.c372 O_NDELAY | in TEST_F()
/linux/drivers/usb/gadget/function/
H A Df_printer.c489 if (fd->f_flags & (O_NONBLOCK|O_NDELAY)) { in printer_read()
615 if (fd->f_flags & (O_NONBLOCK|O_NDELAY)) { in printer_write()
/linux/block/
H A Dfops.c661 if (file->f_flags & O_NDELAY) in file_to_blk_mode()
H A Dbdev.c1046 flags |= O_NDELAY; in blk_to_file_flags()
/linux/drivers/scsi/
H A Dch.c641 file->f_flags & O_NDELAY); in ch_ioctl()
H A Dsg.c1139 cmd_in, filp->f_flags & O_NDELAY); in sg_ioctl_common()
H A Dst.c3620 file->f_flags & O_NDELAY); in st_ioctl()
/linux/drivers/tty/
H A Dtty_io.c958 ret = tty_write_lock(tty, file->f_flags & O_NDELAY); in iterate_tty_write()