Lines Matching refs:fops
43 if (entry->fops && entry->fops->open) in dfs_procfs_open()
45 ret = entry->fops->open(file); in dfs_procfs_open()
64 if (entry && entry->fops && entry->fops->close) in dfs_procfs_close()
66 ret = entry->fops->close(file); in dfs_procfs_close()
79 if (entry && entry->fops && entry->fops->read) in dfs_procfs_read()
81 ret = entry->fops->read(file, buf, count, pos); in dfs_procfs_read()
94 if (entry && entry->fops && entry->fops->write) in dfs_procfs_write()
96 ret = entry->fops->write(file, buf, count, pos); in dfs_procfs_write()
109 if (entry && entry->fops && entry->fops->ioctl) in dfs_procfs_ioctl()
111 ret = entry->fops->ioctl(file, cmd, args); in dfs_procfs_ioctl()
180 if (entry->fops && entry->fops->getdents && ret < count) in dfs_procfs_getdents()
186 r = entry->fops->getdents(file, dirp + ret, (count - ret) * sizeof(struct dirent)); in dfs_procfs_getdents()
213 if (entry && entry->fops && entry->fops->poll) in dfs_procfs_poll()
215 ret = entry->fops->poll(file, req); in dfs_procfs_poll()
228 if (entry && entry->fops && entry->fops->flush) in dfs_procfs_flush()
230 ret = entry->fops->flush(file); in dfs_procfs_flush()