tag | line | file | source code |
ioctl | 51 | fs/ioctl.c | if (filp->f_op && filp->f_op->ioctl) |
ioctl | 52 | fs/ioctl.c | return filp->f_op->ioctl(filp->f_inode, filp, cmd,arg); |
ioctl | 94 | fs/ioctl.c | if (filp->f_op && filp->f_op->ioctl) |
ioctl | 95 | fs/ioctl.c | return filp->f_op->ioctl(filp->f_inode, filp, cmd,arg); |
ioctl | 268 | include/linux/fs.h | int (*ioctl) (struct inode *, struct file *, unsigned int, unsigned long); |
ioctl | 216 | include/linux/tty.h | int (*ioctl)(struct tty_struct *tty, struct file * file, |
ioctl | 242 | include/linux/tty.h | int (*ioctl)(struct tty_struct * tty, struct file * file, |
ioctl | 1500 | kernel/chr_drv/console.c | tty->ioctl = vt_ioctl; |
ioctl | 1229 | kernel/chr_drv/serial.c | tty->ioctl = rs_ioctl; |
ioctl | 515 | kernel/chr_drv/tty_ioctl.c | if (tty->ioctl) { |
ioctl | 516 | kernel/chr_drv/tty_ioctl.c | retval = (tty->ioctl)(tty, file, cmd, arg); |
ioctl | 520 | kernel/chr_drv/tty_ioctl.c | if (ldiscs[tty->disc].ioctl) { |
ioctl | 521 | kernel/chr_drv/tty_ioctl.c | retval = (ldiscs[tty->disc].ioctl) |
ioctl | 60 | net/kern_sock.h | int (*ioctl)(struct socket *sock, unsigned int cmd, unsigned long arg); |
ioctl | 293 | net/socket.c | return sock->ops->ioctl(sock, cmd, arg); |
ioctl | 1685 | net/tcp/sock.c | if (!sk->prot->ioctl) |
ioctl | 1687 | net/tcp/sock.c | return (sk->prot->ioctl (sk, cmd, arg)); |
ioctl | 144 | net/tcp/sock.h | int (*ioctl) (volatile struct sock *sk, int cmd, unsigned long arg); |