| tag | line | file | source code |
| ioctl | 1582 | drivers/char/console.c | tty->ioctl = vt_ioctl; |
| ioctl | 1691 | drivers/char/serial.c | tty->ioctl = rs_ioctl; |
| ioctl | 674 | drivers/char/tty_ioctl.c | if (!tty->ioctl) |
| ioctl | 676 | drivers/char/tty_ioctl.c | tty->ioctl(tty, file, cmd, arg); |
| ioctl | 679 | drivers/char/tty_ioctl.c | if (tty->ioctl) { |
| ioctl | 680 | drivers/char/tty_ioctl.c | retval = (tty->ioctl)(tty, file, cmd, arg); |
| ioctl | 684 | drivers/char/tty_ioctl.c | if (ldiscs[tty->disc].ioctl) { |
| ioctl | 685 | drivers/char/tty_ioctl.c | retval = (ldiscs[tty->disc].ioctl) |
| ioctl | 1137 | drivers/net/slip.c | sl_ldisc.ioctl = (int (*)(struct tty_struct *, struct file *, |
| ioctl | 67 | drivers/sound/dev_table.h | int (*ioctl) (int dev, unsigned int cmd, unsigned int arg, int local); |
| ioctl | 78 | drivers/sound/dev_table.h | int (*ioctl) (int dev, unsigned int cmd, unsigned int arg); |
| ioctl | 88 | drivers/sound/dev_table.h | int (*ioctl) (int dev, unsigned int cmd, unsigned int arg); |
| ioctl | 109 | drivers/sound/dev_table.h | int (*ioctl) (int dev, unsigned int cmd, unsigned int arg); |
| ioctl | 109 | drivers/sound/dmabuf.c | sr = dsp_devs[dev]->ioctl (dev, SOUND_PCM_READ_RATE, 0, 1); |
| ioctl | 110 | drivers/sound/dmabuf.c | nc = dsp_devs[dev]->ioctl (dev, SOUND_PCM_READ_CHANNELS, 0, 1); |
| ioctl | 111 | drivers/sound/dmabuf.c | sz = dsp_devs[dev]->ioctl (dev, SOUND_PCM_READ_BITS, 0, 1); |
| ioctl | 226 | drivers/sound/dmabuf.c | dsp_devs[dev]->ioctl (dev, SOUND_PCM_WRITE_BITS, 8, 1); |
| ioctl | 227 | drivers/sound/dmabuf.c | dsp_devs[dev]->ioctl (dev, SOUND_PCM_WRITE_CHANNELS, 1, 1); |
| ioctl | 228 | drivers/sound/dmabuf.c | dsp_devs[dev]->ioctl (dev, SOUND_PCM_WRITE_RATE, DSP_DEFAULT_SPEED, 1); |
| ioctl | 477 | drivers/sound/dmabuf.c | return dsp_devs[dev]->ioctl (dev, cmd, arg, local); |
| ioctl | 108 | drivers/sound/midibuf.c | return midi_devs[0]->ioctl (dev, cmd, arg); |
| ioctl | 798 | drivers/sound/sequencer.c | return synth_devs[dev]->ioctl (dev, cmd, arg); |
| ioctl | 819 | drivers/sound/sequencer.c | return IOCTL_OUT (arg, synth_devs[dev]->ioctl (dev, cmd, arg)); |
| ioctl | 833 | drivers/sound/sequencer.c | synth_devs[dev]->ioctl (dev, cmd, arg); |
| ioctl | 852 | drivers/sound/sequencer.c | return synth_devs[dev]->ioctl (dev, cmd, arg); |
| ioctl | 967 | drivers/sound/sequencer.c | return synth_devs[0]->ioctl (0, cmd, arg); |
| ioctl | 391 | drivers/sound/sound_switch.c | return mixer_devs[dev]->ioctl (dev, cmd, arg); |
| 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 | 271 | include/linux/fs.h | int (*ioctl) (struct inode *, struct file *, unsigned int, unsigned long); |
| ioctl | 105 | include/linux/net.h | int (*ioctl) (struct socket *sock, unsigned int cmd, |
| ioctl | 641 | include/linux/soundcard.h | ioctl(seqfd, SNDCTL_PMGR_ACCESS, &_pm_info)) |
| ioctl | 645 | include/linux/soundcard.h | ioctl(seqfd, SNDCTL_PMGR_ACCESS, &_pm_info)) |
| ioctl | 229 | include/linux/tty.h | int (*ioctl)(struct tty_struct *tty, struct file * file, |
| ioctl | 260 | include/linux/tty.h | int (*ioctl)(struct tty_struct * tty, struct file * file, |
| ioctl | 1498 | net/inet/sock.c | if (!sk || !sk->prot->ioctl) return(-EINVAL); |
| ioctl | 1499 | net/inet/sock.c | return(sk->prot->ioctl(sk, cmd, arg)); |
| ioctl | 196 | net/inet/sock.h | int (*ioctl)(struct sock *sk, int cmd, |
| ioctl | 323 | net/socket.c | return(sock->ops->ioctl(sock, cmd, arg)); |