Home
last modified time | relevance | path

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

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