tag | line | file | source code |
ioctl | 1550 | drivers/char/console.c | tty->ioctl = vt_ioctl; |
ioctl | 1603 | drivers/char/serial.c | tty->ioctl = rs_ioctl; |
ioctl | 633 | drivers/char/tty_ioctl.c | if (!tty->ioctl) |
ioctl | 635 | drivers/char/tty_ioctl.c | tty->ioctl(tty, file, cmd, arg); |
ioctl | 638 | drivers/char/tty_ioctl.c | if (tty->ioctl) { |
ioctl | 639 | drivers/char/tty_ioctl.c | retval = (tty->ioctl)(tty, file, cmd, arg); |
ioctl | 643 | drivers/char/tty_ioctl.c | if (ldiscs[tty->disc].ioctl) { |
ioctl | 644 | drivers/char/tty_ioctl.c | retval = (ldiscs[tty->disc].ioctl) |
ioctl | 996 | 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 | 223 | drivers/sound/dmabuf.c | dsp_devs[dev]->ioctl (dev, SOUND_PCM_WRITE_BITS, 8, 1); |
ioctl | 224 | drivers/sound/dmabuf.c | dsp_devs[dev]->ioctl (dev, SOUND_PCM_WRITE_CHANNELS, 1, 1); |
ioctl | 225 | drivers/sound/dmabuf.c | dsp_devs[dev]->ioctl (dev, SOUND_PCM_WRITE_RATE, DSP_DEFAULT_SPEED, 1); |
ioctl | 469 | 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 | 795 | drivers/sound/sequencer.c | return synth_devs[dev]->ioctl (dev, cmd, arg); |
ioctl | 816 | drivers/sound/sequencer.c | return IOCTL_OUT (arg, synth_devs[dev]->ioctl (dev, cmd, arg)); |
ioctl | 830 | drivers/sound/sequencer.c | synth_devs[dev]->ioctl (dev, cmd, arg); |
ioctl | 849 | drivers/sound/sequencer.c | return synth_devs[dev]->ioctl (dev, cmd, arg); |
ioctl | 964 | drivers/sound/sequencer.c | return synth_devs[0]->ioctl (0, cmd, arg); |
ioctl | 432 | drivers/sound/soundcard.c | return mixer_devs[dev]->ioctl (dev, cmd, arg); |
ioctl | 639 | drivers/sound/soundcard.h | ioctl(seqfd, SNDCTL_PMGR_ACCESS, &_pm_info)) |
ioctl | 643 | drivers/sound/soundcard.h | ioctl(seqfd, SNDCTL_PMGR_ACCESS, &_pm_info)) |
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 | 266 | 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 | 229 | include/linux/tty.h | int (*ioctl)(struct tty_struct *tty, struct file * file, |
ioctl | 259 | include/linux/tty.h | int (*ioctl)(struct tty_struct * tty, struct file * file, |
ioctl | 1492 | net/inet/sock.c | if (!sk || !sk->prot->ioctl) return(-EINVAL); |
ioctl | 1493 | net/inet/sock.c | return(sk->prot->ioctl(sk, cmd, arg)); |
ioctl | 174 | net/inet/sock.h | int (*ioctl)(struct sock *sk, int cmd, |
ioctl | 321 | net/socket.c | return(sock->ops->ioctl(sock, cmd, arg)); |