Home
last modified time | relevance | path

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

/Linux-v5.4/arch/sparc/include/uapi/asm/
Dfcntl.h13 #define O_NDELAY 0x0004 macro
15 #define O_NDELAY (0x0004 | O_NONBLOCK) macro
/Linux-v5.4/include/linux/
Dfcntl.h10 O_APPEND | O_NDELAY | O_NONBLOCK | O_NDELAY | __O_SYNC | O_DSYNC | \
/Linux-v5.4/include/uapi/asm-generic/
Dfcntl.h96 #ifndef O_NDELAY
97 #define O_NDELAY O_NONBLOCK macro
/Linux-v5.4/tools/include/uapi/asm-generic/
Dfcntl.h95 #ifndef O_NDELAY
96 #define O_NDELAY O_NONBLOCK macro
/Linux-v5.4/tools/perf/trace/beauty/
Dopen_flags.c55 #elif O_NDELAY in open__scnprintf_flags()
/Linux-v5.4/fs/
Dfcntl.c33 #define SETFL_MASK (O_APPEND | O_NONBLOCK | O_NDELAY | O_DIRECT | O_NOATIME)
53 if (O_NONBLOCK != O_NDELAY) in setfl()
54 if (arg & O_NDELAY) in setfl()
1036 (VALID_OPEN_FLAGS & ~(O_NONBLOCK | O_NDELAY)) | in fcntl_init()
Dioctl.c523 if (O_NONBLOCK != O_NDELAY) in ioctl_fionbio()
524 flag |= O_NDELAY; in ioctl_fionbio()
Dblock_dev.c1832 if (filp->f_flags & O_NDELAY) in blkdev_open()
1949 if (file->f_flags & O_NDELAY) in block_ioctl()
/Linux-v5.4/drivers/block/aoe/
Daoechr.c231 if (filp->f_flags & O_NDELAY) { in aoechr_read()
/Linux-v5.4/Documentation/ide/
DChangeLog.ide-floppy.1996-200241 * Also, O_NDELAY on open will allow the device to be
/Linux-v5.4/Documentation/driver-api/serial/
Dn_gsm.rst39 fd = open(SERIAL_PORT, O_RDWR | O_NOCTTY | O_NDELAY);
/Linux-v5.4/tools/testing/selftests/net/
Dtcp_mmap.c138 fcntl(fd, F_SETFL, O_NDELAY); in child_thread()
/Linux-v5.4/block/
Dcompat_ioctl.c329 if (file->f_flags & O_NDELAY) in compat_blkdev_ioctl()
/Linux-v5.4/init/
Ddo_mounts.c515 fd = ksys_open("/dev/root", O_RDWR | O_NDELAY, 0); in change_floppy()
/Linux-v5.4/drivers/usb/gadget/function/
Df_printer.c463 if (fd->f_flags & (O_NONBLOCK|O_NDELAY)) { in printer_read()
576 if (fd->f_flags & (O_NONBLOCK|O_NDELAY)) { in printer_write()
/Linux-v5.4/fs/overlayfs/
Dfile.c44 #define OVL_SETFL_MASK (O_APPEND | O_NONBLOCK | O_NDELAY | O_DIRECT)
/Linux-v5.4/drivers/scsi/
Dch.c626 file->f_flags & O_NDELAY); in ch_ioctl()
Dsg.c1137 cmd_in, filp->f_flags & O_NDELAY); in sg_ioctl()
Dst.c3533 file->f_flags & O_NDELAY); in st_ioctl()
/Linux-v5.4/drivers/tty/
Dtty_io.c910 ret = tty_write_lock(tty, file->f_flags & O_NDELAY); in do_tty_write()