taglinefilesource code
fops246arch/alpha/kernel/osf_sys.cstruct file_operations * fops;
fops265arch/alpha/kernel/osf_sys.cfops = get_blkfops(MAJOR(dev));
fops266arch/alpha/kernel/osf_sys.cif (!fops) {
fops270arch/alpha/kernel/osf_sys.cif (fops->open) {
fops275arch/alpha/kernel/osf_sys.cretval = fops->open(inode, &dummy);
fops287arch/alpha/kernel/osf_sys.cstruct file_operations * fops;
fops289arch/alpha/kernel/osf_sys.cfops = get_blkfops(MAJOR(inode->i_rdev));
fops290arch/alpha/kernel/osf_sys.cif (fops->release)
fops291arch/alpha/kernel/osf_sys.cfops->release(inode, NULL);
fops52drivers/char/mouse.cfile->f_op = c->fops;
fops367drivers/char/tty_io.cvoid do_tty_hangup(struct tty_struct * tty, struct file_operations *fops)
fops387drivers/char/tty_io.cfilp->f_op = fops;
fops26fs/devices.cstruct file_operations * fops;
fops44fs/devices.cif (chrdevs[i].fops) {
fops50fs/devices.cif (blkdevs[i].fops) {
fops79fs/devices.cif (!tb[major].fops && major != 0) {
fops85fs/devices.cret = tb[major].fops;
fops105fs/devices.cint register_chrdev(unsigned int major, const char * name, struct file_operations *fops)
fops109fs/devices.cif (chrdevs[major].fops == NULL) {
fops111fs/devices.cchrdevs[major].fops = fops;
fops119fs/devices.cif (chrdevs[major].fops && chrdevs[major].fops != fops)
fops122fs/devices.cchrdevs[major].fops = fops;
fops126fs/devices.cint register_blkdev(unsigned int major, const char * name, struct file_operations *fops)
fops130fs/devices.cif (blkdevs[major].fops == NULL) {
fops132fs/devices.cblkdevs[major].fops = fops;
fops140fs/devices.cif (blkdevs[major].fops && blkdevs[major].fops != fops)
fops143fs/devices.cblkdevs[major].fops = fops;
fops151fs/devices.cif (!chrdevs[major].fops)
fops156fs/devices.cchrdevs[major].fops = NULL;
fops164fs/devices.cif (!blkdevs[major].fops)
fops169fs/devices.cblkdevs[major].fops = NULL;
fops185fs/devices.cstruct file_operations * fops;
fops188fs/devices.cif (i >= MAX_BLKDEV || (fops = blkdevs[i].fops) == NULL)
fops190fs/devices.cif (fops->check_media_change == NULL)
fops192fs/devices.cif (!fops->check_media_change(dev))
fops203fs/devices.cif (fops->revalidate)
fops204fs/devices.cfops->revalidate(dev);
fops225fs/devices.cstruct file_operations *fops = get_blkfops(MAJOR(inode->i_rdev));
fops226fs/devices.cif (fops && fops->release)
fops227fs/devices.cfops->release(inode,NULL);
fops73fs/select.cstruct file_operations *fops;
fops77fs/select.cif ((fops = file->f_op) && (select = fops->select))
fops716fs/super.cstruct file_operations * fops;
fops744fs/super.cfops = NULL;
fops762fs/super.cfops = get_blkfops(MAJOR(dev));
fops763fs/super.cif (!fops) {
fops767fs/super.cif (fops->open) {
fops772fs/super.cretval = fops->open(inode, &dummy);
fops795fs/super.cif (retval && fops && fops->release)
fops796fs/super.cfops->release(inode, NULL);
fops14include/linux/mouse.hstruct file_operations *fops;