Lines Matching defs:file
4 #include <linux/file.h>
19 static long ns_ioctl(struct file *filp, unsigned int ioctl,
151 struct file *f;
188 static long ns_ioctl(struct file *filp, unsigned int ioctl,
232 bool proc_ns_file(const struct file *file)
234 return file->f_op == &ns_file_operations;
237 struct file *proc_ns_fget(int fd)
239 struct file *file;
241 file = fget(fd);
242 if (!file)
245 if (file->f_op != &ns_file_operations)
248 return file;
251 fput(file);