Home
last modified time | relevance | path

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

/linux-5.19.10/arch/sparc/include/uapi/asm/
Dfcntl.h13 #define O_NDELAY 0x0004 macro
15 #define O_NDELAY (0x0004 | O_NONBLOCK) macro
/linux-5.19.10/tools/include/uapi/asm-generic/
Dfcntl.h96 #ifndef O_NDELAY
97 #define O_NDELAY O_NONBLOCK macro
/linux-5.19.10/include/uapi/asm-generic/
Dfcntl.h96 #ifndef O_NDELAY
97 #define O_NDELAY O_NONBLOCK macro
/linux-5.19.10/include/linux/
Dfcntl.h11 O_APPEND | O_NDELAY | O_NONBLOCK | __O_SYNC | O_DSYNC | \
/linux-5.19.10/tools/perf/trace/beauty/
Dopen_flags.c55 #elif O_NDELAY in open__scnprintf_flags()
/linux-5.19.10/Documentation/driver-api/tty/
Dn_gsm.rst49 fd = open(SERIAL_PORT, O_RDWR | O_NOCTTY | O_NDELAY);
126 fd = open(SERIAL_PORT, O_RDWR | O_NOCTTY | O_NDELAY);
/linux-5.19.10/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()
1031 (VALID_OPEN_FLAGS & ~(O_NONBLOCK | O_NDELAY)) | in fcntl_init()
Dioctl.c352 if (O_NONBLOCK != O_NDELAY) in ioctl_fionbio()
353 flag |= O_NDELAY; in ioctl_fionbio()
/linux-5.19.10/drivers/block/aoe/
Daoechr.c229 if (filp->f_flags & O_NDELAY) { in aoechr_read()
/linux-5.19.10/block/
Dioctl.c569 if (file->f_flags & O_NDELAY) in blkdev_ioctl()
638 if (file->f_flags & O_NDELAY) in compat_blkdev_ioctl()
Dfops.c474 if (filp->f_flags & O_NDELAY) in blkdev_open()
/linux-5.19.10/tools/testing/selftests/net/
Dtcp_mmap.c167 fcntl(fd, F_SETFL, O_NDELAY); in child_thread()
/linux-5.19.10/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-5.19.10/fs/overlayfs/
Dfile.c76 #define OVL_SETFL_MASK (O_APPEND | O_NONBLOCK | O_NDELAY | O_DIRECT)
/linux-5.19.10/drivers/scsi/
Dch.c635 file->f_flags & O_NDELAY); in ch_ioctl()
Dsg.c1141 cmd_in, filp->f_flags & O_NDELAY); in sg_ioctl_common()
Dst.c3529 file->f_flags & O_NDELAY); in st_ioctl()
/linux-5.19.10/drivers/tty/
Dtty_io.c973 ret = tty_write_lock(tty, file->f_flags & O_NDELAY); in do_tty_write()