Home
last modified time | relevance | path

Searched refs:file_ops (Results 1 – 10 of 10) sorted by relevance

/linux/rust/kernel/debugfs/
H A Dentry.rs5 debugfs::file_ops::FileOps,
62 file_ops: &'static FileOps<T>, in dynamic_file()
73 file_ops.mode(), in dynamic_file()
77 &**file_ops, in dynamic_file()
113 file_ops: &FileOps<T>, in file()
126 file_ops.mode(), in file()
130 &**file_ops, in file()
/linux/rust/kernel/
H A Ddebugfs.rs46 mod file_ops;
47 use file_ops::{
102 file_ops: &'static FileOps<T>,
112 unsafe { Entry::dynamic_file(name, parent.clone(), data, file_ops) }
173 let file_ops = &<T as ReadFile<_>>::FILE_OPS; in read_binary_file()
174 self.create_file(name, data, file_ops) in read_binary_file()
242 let file_ops = <FormatAdapter<T, F>>::FILE_OPS.adapt(); in read_write_binary_file()
243 self.create_file(name, data, file_ops) in read_write_binary_file()
258 let file_ops = &<T as ReadWriteFile<_>>::FILE_OPS;
259 self.create_file(name, data, file_ops)
28 mod file_ops; global() module
152 let file_ops = &<T as ReadFile<_>>::FILE_OPS; read_only_file() localVariable
218 let file_ops = <FormatAdapter<T, F>>::FILE_OPS.adapt(); read_callback_file() localVariable
234 let file_ops = &<T as ReadWriteFile<_>>::FILE_OPS; read_write_file() localVariable
250 let file_ops = &<T as BinaryReadWriteFile<_>>::FILE_OPS; read_write_binary_file() localVariable
272 let file_ops = read_write_callback_file() localVariable
327 let file_ops = <WritableAdapter<NoWriter<T>, W> as WriteFile<_>>::FILE_OPS write_callback_file() localVariable
[all...]
/linux/security/apparmor/include/
H A Dapparmorfs.h37 const struct file_operations *file_ops; member
45 .file_ops = &aa_sfs_seq_file_ops }
49 .file_ops = &aa_sfs_seq_file_ops }
53 .file_ops = &aa_sfs_seq_file_ops }
56 .mode = (_mode), .file_ops = (_fops) }
/linux/tools/testing/selftests/mm/
H A Dkhugepaged.c52 static struct mem_ops *file_ops; variable
115 if (file_ops && finfo.type == VMA_FILE) in save_settings()
1146 file_ops = &__file_ops; in parse_test_type()
1152 file_ops = &__file_ops; in parse_test_type()
1159 if (!file_ops) in parse_test_type()
1231 TEST(collapse_full, khugepaged_context, file_ops); in main()
1234 TEST(collapse_full, madvise_context, file_ops); in main()
1241 TEST(collapse_single_pte_entry, khugepaged_context, file_ops); in main()
1244 TEST(collapse_single_pte_entry, madvise_context, file_ops); in main()
1248 TEST(collapse_max_ptes_none, khugepaged_context, file_ops); in main()
[all …]
/linux/drivers/infiniband/hw/hfi1/
H A DMakefile20 file_ops.o \
/linux/fs/nfs/
H A Dproc.c733 .file_ops = &nfs_file_operations,
H A Dnfs3proc.c1078 .file_ops = &nfs_file_operations,
H A Dinode.c498 inode->i_fop = NFS_SB(sb)->nfs_client->rpc_ops->file_ops; in nfs_fhget()
H A Dnfs4proc.c10635 .file_ops = &nfs4_file_operations,
/linux/security/apparmor/
H A Dapparmorfs.c2530 fs_file->file_ops); in entry_create_file()