Samsung Internal API reference  2.0
fops

Structure that contains file operations callbacks supported by the driver. If user wants the driver to carry out some additional action, then handlers should be assigned to the appropriate callbacks. More...

Data Fields

fops_open open
 
fops_close close
 
fops_truncate truncate
 
fops_read read
 
fops_write write
 
fops_ioctl ioctl
 
fops_stat stat
 
fops_mmap mmap
 
fops_lseek lseek
 
fops_fsync fsync
 
fops_unlink unlink
 
fops_rename rename
 
fops_rmdir rmdir
 
fops_mkdir mkdir
 
fops_readdir readdir
 
fops_lookup lookup
 
fops_probe probe
 

Detailed Description

Structure that contains file operations callbacks supported by the driver. If user wants the driver to carry out some additional action, then handlers should be assigned to the appropriate callbacks.

Field Documentation

fops_close fops::close

callback for close operation

fops_fsync fops::fsync

callback for fsync operation

fops_ioctl fops::ioctl

callback for ioctl operation

fops_lookup fops::lookup

callback for lookup operation

fops_lseek fops::lseek

callback for seek operation

fops_mkdir fops::mkdir

callback for mkdir operation

fops_mmap fops::mmap

callback for mmap operation

fops_open fops::open

callback for open operation

fops_probe fops::probe

callback for probe operation

fops_read fops::read

callback for read operation

fops_readdir fops::readdir

callback for readdir operation

fops_rename fops::rename

callback for rename operation

fops_rmdir fops::rmdir

callback for rmdir operation

fops_stat fops::stat

callback for stat operation

fops_truncate fops::truncate

callback for truncate operation

fops_unlink fops::unlink

callback for unlink operation

fops_write fops::write

callback for write operation