Home
last modified time | relevance | path

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

/linux-5.15/arch/sparc/include/uapi/asm/
H A Dfcntl.h13 #define O_NDELAY 0x0004 macro
15 #define O_NDELAY (0x0004 | O_NONBLOCK) macro
/linux-5.15/tools/include/uapi/asm-generic/
A Dfcntl.h95 #ifndef O_NDELAY
96 #define O_NDELAY O_NONBLOCK macro
/linux-5.15/include/uapi/asm-generic/
A Dfcntl.h96 #ifndef O_NDELAY
97 #define O_NDELAY O_NONBLOCK macro
/linux-5.15/include/linux/
H A Dfcntl.h11 O_APPEND | O_NDELAY | O_NONBLOCK | __O_SYNC | O_DSYNC | \
/linux-5.15/tools/perf/trace/beauty/
A Dopen_flags.c55 #elif O_NDELAY in open__scnprintf_flags()
/linux-5.15/fs/
H A Dfcntl.c34 #define SETFL_MASK (O_APPEND | O_NONBLOCK | O_NDELAY | O_DIRECT | O_NOATIME)
54 if (O_NONBLOCK != O_NDELAY) in setfl()
55 if (arg & O_NDELAY) in setfl()
1050 (VALID_OPEN_FLAGS & ~(O_NONBLOCK | O_NDELAY)) | in fcntl_init()
H A Dioctl.c356 if (O_NONBLOCK != O_NDELAY) in ioctl_fionbio()
357 flag |= O_NDELAY; in ioctl_fionbio()
/linux-5.15/drivers/block/aoe/
H A Daoechr.c229 if (filp->f_flags & O_NDELAY) { in aoechr_read()
/linux-5.15/block/
A Dfops.c441 if (filp->f_flags & O_NDELAY) in blkdev_open()
473 if (file->f_flags & O_NDELAY) in block_ioctl()
H A Dioctl.c615 if (file->f_flags & O_NDELAY) in compat_blkdev_ioctl()
/linux-5.15/Documentation/ide/
H A DChangeLog.ide-floppy.1996-200241 * Also, O_NDELAY on open will allow the device to be
/linux-5.15/Documentation/driver-api/serial/
A Dn_gsm.rst39 fd = open(SERIAL_PORT, O_RDWR | O_NOCTTY | O_NDELAY);
/linux-5.15/tools/testing/selftests/net/
A Dtcp_mmap.c167 fcntl(fd, F_SETFL, O_NDELAY); in child_thread()
/linux-5.15/drivers/usb/gadget/function/
A Df_printer.c486 if (fd->f_flags & (O_NONBLOCK|O_NDELAY)) { in printer_read()
605 if (fd->f_flags & (O_NONBLOCK|O_NDELAY)) { in printer_write()
/linux-5.15/fs/overlayfs/
A Dfile.c72 #define OVL_SETFL_MASK (O_APPEND | O_NONBLOCK | O_NDELAY | O_DIRECT)
/linux-5.15/drivers/scsi/
H A Dch.c635 file->f_flags & O_NDELAY); in ch_ioctl()
H A Dsg.c1146 cmd_in, filp->f_flags & O_NDELAY); in sg_ioctl_common()
H A Dst.c3527 file->f_flags & O_NDELAY); in st_ioctl()
/linux-5.15/drivers/tty/
H A Dtty_io.c984 ret = tty_write_lock(tty, file->f_flags & O_NDELAY); in do_tty_write()