taglinefilesource code
fops245arch/alpha/kernel/osf_sys.cstruct file_operations * fops;
fops264arch/alpha/kernel/osf_sys.cfops = get_blkfops(MAJOR(dev));
fops265arch/alpha/kernel/osf_sys.cif (!fops) {
fops269arch/alpha/kernel/osf_sys.cif (fops->open) {
fops274arch/alpha/kernel/osf_sys.cretval = fops->open(inode, &dummy);
fops286arch/alpha/kernel/osf_sys.cstruct file_operations * fops;
fops288arch/alpha/kernel/osf_sys.cfops = get_blkfops(MAJOR(inode->i_rdev));
fops289arch/alpha/kernel/osf_sys.cif (fops->release)
fops290arch/alpha/kernel/osf_sys.cfops->release(inode, NULL);
fops49drivers/char/mouse.cfile->f_op = c->fops;
fops345drivers/char/tty_io.cvoid do_tty_hangup(struct tty_struct * tty, struct file_operations *fops)
fops365drivers/char/tty_io.cfilp->f_op = fops;
fops20fs/devices.cstruct file_operations * fops;
fops38fs/devices.cif (chrdevs[i].fops) {
fops44fs/devices.cif (blkdevs[i].fops) {
fops55fs/devices.creturn blkdevs[major].fops;
fops62fs/devices.creturn chrdevs[major].fops;
fops65fs/devices.cint register_chrdev(unsigned int major, const char * name, struct file_operations *fops)
fops69fs/devices.cif (chrdevs[major].fops == NULL) {
fops71fs/devices.cchrdevs[major].fops = fops;
fops79fs/devices.cif (chrdevs[major].fops && chrdevs[major].fops != fops)
fops82fs/devices.cchrdevs[major].fops = fops;
fops86fs/devices.cint register_blkdev(unsigned int major, const char * name, struct file_operations *fops)
fops90fs/devices.cif (blkdevs[major].fops == NULL) {
fops92fs/devices.cblkdevs[major].fops = fops;
fops100fs/devices.cif (blkdevs[major].fops && blkdevs[major].fops != fops)
fops103fs/devices.cblkdevs[major].fops = fops;
fops111fs/devices.cif (!chrdevs[major].fops)
fops116fs/devices.cchrdevs[major].fops = NULL;
fops124fs/devices.cif (!blkdevs[major].fops)
fops129fs/devices.cblkdevs[major].fops = NULL;
fops145fs/devices.cstruct file_operations * fops;
fops148fs/devices.cif (i >= MAX_BLKDEV || (fops = blkdevs[i].fops) == NULL)
fops150fs/devices.cif (fops->check_media_change == NULL)
fops152fs/devices.cif (!fops->check_media_change(dev))
fops163fs/devices.cif (fops->revalidate)
fops164fs/devices.cfops->revalidate(dev);
fops176fs/devices.cif (i >= MAX_BLKDEV || !blkdevs[i].fops)
fops178fs/devices.cfilp->f_op = blkdevs[i].fops;
fops227fs/devices.cif (i >= MAX_CHRDEV || !chrdevs[i].fops)
fops229fs/devices.cfilp->f_op = chrdevs[i].fops;
fops73fs/select.cstruct file_operations *fops;
fops77fs/select.cif ((fops = file->f_op) && (select = fops->select))
fops414fs/super.cstruct file_operations * fops;
fops446fs/super.cfops = get_blkfops(MAJOR(dev));
fops447fs/super.cif (fops && fops->release)
fops448fs/super.cfops->release(inode,NULL);
fops592fs/super.cstruct file_operations * fops;
fops620fs/super.cfops = NULL;
fops638fs/super.cfops = get_blkfops(MAJOR(dev));
fops639fs/super.cif (!fops) {
fops643fs/super.cif (fops->open) {
fops648fs/super.cretval = fops->open(inode, &dummy);
fops671fs/super.cif (retval && fops && fops->release)
fops672fs/super.cfops->release(inode, NULL);
fops14include/linux/mouse.hstruct file_operations *fops;