tag | line | file | source code |
f_op | 56 | fs/devices.c | filp->f_op = blkdev_fops[i]; |
f_op | 57 | fs/devices.c | if (filp->f_op->open) |
f_op | 58 | fs/devices.c | return filp->f_op->open(inode,filp); |
f_op | 107 | fs/devices.c | filp->f_op = chrdev_fops[i]; |
f_op | 108 | fs/devices.c | if (filp->f_op->open) |
f_op | 109 | fs/devices.c | return filp->f_op->open(inode,filp); |
f_op | 50 | fs/exec.c | while (file.f_op->write(inode,&file,(char *)(addr),(nr)) != (nr)) goto close_coredump |
f_op | 53 | fs/exec.c | if (file.f_op->lseek) { \ |
f_op | 54 | fs/exec.c | if (file.f_op->lseek(inode,&file,(offset),0) != (offset)) \ |
f_op | 98 | fs/exec.c | file.f_op = inode->i_op->default_file_ops; |
f_op | 99 | fs/exec.c | if (file.f_op->open) |
f_op | 100 | fs/exec.c | if (file.f_op->open(inode,&file)) |
f_op | 102 | fs/exec.c | if (!file.f_op->write) |
f_op | 167 | fs/exec.c | if (file.f_op->release) |
f_op | 168 | fs/exec.c | file.f_op->release(inode,&file); |
f_op | 398 | fs/exec.c | file.f_op = inode->i_op->default_file_ops; |
f_op | 399 | fs/exec.c | if (file.f_op->open) |
f_op | 400 | fs/exec.c | if (file.f_op->open(inode,&file)) |
f_op | 402 | fs/exec.c | if (!file.f_op || !file.f_op->read) |
f_op | 404 | fs/exec.c | if (file.f_op->lseek) { |
f_op | 405 | fs/exec.c | if (file.f_op->lseek(inode,&file,offset,0) != offset) |
f_op | 409 | fs/exec.c | result = file.f_op->read(inode, &file, addr, count); |
f_op | 411 | fs/exec.c | if (file.f_op->release) |
f_op | 412 | fs/exec.c | file.f_op->release(inode,&file); |
f_op | 29 | fs/fifo.c | filp->f_op = &read_pipe_fops; |
f_op | 64 | fs/fifo.c | filp->f_op = &write_pipe_fops; |
f_op | 92 | fs/fifo.c | filp->f_op = &rdwr_pipe_fops; |
f_op | 51 | fs/ioctl.c | if (filp->f_op && filp->f_op->ioctl) |
f_op | 52 | fs/ioctl.c | return filp->f_op->ioctl(filp->f_inode, filp, cmd,arg); |
f_op | 94 | fs/ioctl.c | if (filp->f_op && filp->f_op->ioctl) |
f_op | 95 | fs/ioctl.c | return filp->f_op->ioctl(filp->f_inode, filp, cmd,arg); |
f_op | 56 | fs/nfs/sock.c | select = file->f_op->select; |
f_op | 401 | fs/open.c | f->f_op = NULL; |
f_op | 403 | fs/open.c | f->f_op = inode->i_op->default_file_ops; |
f_op | 404 | fs/open.c | if (f->f_op && f->f_op->open) { |
f_op | 405 | fs/open.c | error = f->f_op->open(inode,f); |
f_op | 437 | fs/open.c | if (filp->f_op && filp->f_op->release) |
f_op | 438 | fs/open.c | filp->f_op->release(inode,filp); |
f_op | 255 | fs/pipe.c | f[0]->f_op = &read_pipe_fops; |
f_op | 258 | fs/pipe.c | f[1]->f_op = &write_pipe_fops; |
f_op | 29 | fs/read_write.c | if (file->f_op && file->f_op->readdir) { |
f_op | 32 | fs/read_write.c | error = file->f_op->readdir(inode,file,dirent,count); |
f_op | 46 | fs/read_write.c | if (file->f_op && file->f_op->lseek) |
f_op | 47 | fs/read_write.c | return file->f_op->lseek(file->f_inode,file,offset,origin); |
f_op | 80 | fs/read_write.c | if (!file->f_op || !file->f_op->read) |
f_op | 87 | fs/read_write.c | return file->f_op->read(inode,file,buf,count); |
f_op | 100 | fs/read_write.c | if (!file->f_op || !file->f_op->write) |
f_op | 107 | fs/read_write.c | return file->f_op->write(inode,file,buf,count); |
f_op | 70 | fs/select.c | if ((fops = file->f_op) && (select = fops->select)) |
f_op | 217 | include/linux/fs.h | struct file_operations * f_op; |
f_op | 320 | kernel/chr_drv/mem.c | filp->f_op = &ram_fops; |
f_op | 323 | kernel/chr_drv/mem.c | filp->f_op = &mem_fops; |
f_op | 326 | kernel/chr_drv/mem.c | filp->f_op = &kmem_fops; |
f_op | 329 | kernel/chr_drv/mem.c | filp->f_op = &null_fops; |
f_op | 332 | kernel/chr_drv/mem.c | filp->f_op = &port_fops; |
f_op | 335 | kernel/chr_drv/mem.c | filp->f_op = &zero_fops; |
f_op | 338 | kernel/chr_drv/mem.c | filp->f_op = &core_fops; |
f_op | 343 | kernel/chr_drv/mem.c | if (filp->f_op && filp->f_op->open) |
f_op | 344 | kernel/chr_drv/mem.c | return filp->f_op->open(inode,filp); |
f_op | 44 | kernel/chr_drv/mouse.c | file->f_op = &bus_mouse_fops; |
f_op | 49 | kernel/chr_drv/mouse.c | file->f_op = &psaux_fops; |
f_op | 54 | kernel/chr_drv/mouse.c | file->f_op = &ms_bus_mouse_fops; |
f_op | 59 | kernel/chr_drv/mouse.c | file->f_op = &atixl_busmouse_fops; |
f_op | 65 | kernel/chr_drv/mouse.c | return file->f_op->open(inode,file); |
f_op | 248 | kernel/chr_drv/tty_io.c | if (filp->f_op != &tty_fops) |
f_op | 250 | kernel/chr_drv/tty_io.c | filp->f_op = fops; |
f_op | 277 | kernel/chr_drv/tty_io.c | filp->f_op = &tty_fops; |
f_op | 282 | kernel/chr_drv/tty_io.c | return ((filp->f_op == &hung_up_tty_fops) || |
f_op | 283 | kernel/chr_drv/tty_io.c | (filp->f_op == &vhung_up_tty_fops)); |
f_op | 1346 | kernel/chr_drv/tty_io.c | if (filp && (filp->f_op == &tty_fops) && |
f_op | 119 | mm/mmap.c | if (!file->f_op || !file->f_op->mmap) |
f_op | 132 | mm/mmap.c | error = file->f_op->mmap(file->f_inode, file, base + addr, len, mask, off); |
f_op | 100 | net/socket.c | file->f_op = &socket_file_ops; |