• Home
  • Raw
  • Download

Lines Matching refs:lower_file

115 	struct file *lower_file;  in ecryptfs_readdir()  local
119 lower_file = ecryptfs_file_to_lower(file); in ecryptfs_readdir()
120 lower_file->f_pos = file->f_pos; in ecryptfs_readdir()
128 rc = vfs_readdir(lower_file, ecryptfs_filldir, (void *)&buf); in ecryptfs_readdir()
129 file->f_pos = lower_file->f_pos; in ecryptfs_readdir()
136 lower_file->f_path.dentry->d_inode); in ecryptfs_readdir()
243 if ((ecryptfs_inode_to_private(inode)->lower_file->f_flags & O_ACCMODE) in ecryptfs_open()
251 file, ecryptfs_inode_to_private(inode)->lower_file); in ecryptfs_open()
278 struct file *lower_file = ecryptfs_file_to_lower(file); in ecryptfs_flush() local
280 if (lower_file->f_op && lower_file->f_op->flush) { in ecryptfs_flush()
282 return lower_file->f_op->flush(lower_file, td); in ecryptfs_flush()
305 struct file *lower_file = NULL; in ecryptfs_fasync() local
307 lower_file = ecryptfs_file_to_lower(file); in ecryptfs_fasync()
308 if (lower_file->f_op && lower_file->f_op->fasync) in ecryptfs_fasync()
309 rc = lower_file->f_op->fasync(fd, lower_file, flag); in ecryptfs_fasync()
316 struct file *lower_file = NULL; in ecryptfs_unlocked_ioctl() local
320 lower_file = ecryptfs_file_to_lower(file); in ecryptfs_unlocked_ioctl()
321 if (lower_file && lower_file->f_op && lower_file->f_op->unlocked_ioctl) in ecryptfs_unlocked_ioctl()
322 rc = lower_file->f_op->unlocked_ioctl(lower_file, cmd, arg); in ecryptfs_unlocked_ioctl()
330 struct file *lower_file = NULL; in ecryptfs_compat_ioctl() local
334 lower_file = ecryptfs_file_to_lower(file); in ecryptfs_compat_ioctl()
335 if (lower_file && lower_file->f_op && lower_file->f_op->compat_ioctl) in ecryptfs_compat_ioctl()
336 rc = lower_file->f_op->compat_ioctl(lower_file, cmd, arg); in ecryptfs_compat_ioctl()