taglinefilesource code
O_NONBLOCK87fs/fcntl.cfilp->f_flags &= ~(O_APPEND | O_NONBLOCK);
O_NONBLOCK88fs/fcntl.cfilp->f_flags |= arg & (O_APPEND | O_NONBLOCK);
O_NONBLOCK32fs/fifo.cif (!(filp->f_flags & O_NONBLOCK) && !PIPE_WRITERS(*inode)) {
O_NONBLOCK60fs/fifo.cif ((filp->f_flags & O_NONBLOCK) && !PIPE_READERS(*inode)) {
O_NONBLOCK76fs/ioctl.cfilp->f_flags |= O_NONBLOCK;
O_NONBLOCK78fs/ioctl.cfilp->f_flags &= ~O_NONBLOCK;
O_NONBLOCK20fs/pipe.cif (!(filp->f_flags & O_NONBLOCK))
O_NONBLOCK71fs/pipe.cif (filp->f_flags & O_NONBLOCK)
O_NONBLOCK15include/linux/fcntl.h#define O_NDELAY  O_NONBLOCK
O_NONBLOCK229kernel/chr_drv/psaux.cif (file->f_flags & O_NONBLOCK)
O_NONBLOCK1144kernel/chr_drv/serial.cif (filp->f_flags & O_NONBLOCK) {
O_NONBLOCK703kernel/chr_drv/tty_io.cif (file->f_flags & O_NONBLOCK) {
O_NONBLOCK736kernel/chr_drv/tty_io.cfile->f_flags &= ~O_NONBLOCK;
O_NONBLOCK798kernel/chr_drv/tty_io.cif (file->f_flags & O_NONBLOCK)
O_NONBLOCK475kernel/chr_drv/tty_ioctl.cfile->f_flags |= O_NONBLOCK;
O_NONBLOCK477kernel/chr_drv/tty_ioctl.cfile->f_flags &= ~O_NONBLOCK;
O_NONBLOCK256net/socket.creturn sock->ops->read(sock, ubuf, size, (file->f_flags & O_NONBLOCK));
O_NONBLOCK271net/socket.creturn sock->ops->write(sock, ubuf, size,(file->f_flags & O_NONBLOCK));
O_NONBLOCK683net/socket.creturn (sock->ops->send (sock, buff, len, (file->f_flags & O_NONBLOCK),
O_NONBLOCK705net/socket.c(file->f_flags & O_NONBLOCK),
O_NONBLOCK726net/socket.creturn (sock->ops->recv (sock, buff, len,(file->f_flags & O_NONBLOCK),
O_NONBLOCK748net/socket.c(file->f_flags & O_NONBLOCK),
O_NONBLOCK1279net/tcp/sock.cif (sk->state != TCP_ESTABLISHED && (flags & O_NONBLOCK))
O_NONBLOCK1352net/tcp/sock.cif (flags & O_NONBLOCK)
O_NONBLOCK2671net/tcp/tcp.cif (flags & O_NONBLOCK)
O_NONBLOCK475net/unix.cif (flags & O_NONBLOCK)