Home
last modified time | relevance | path

Searched refs:FileOps (Results 1 – 3 of 3) sorted by relevance

/linux/rust/kernel/debugfs/
H A Dfile_ops.rs31 pub(super) struct FileOps<T> { struct
39 impl<T> FileOps<T> { argument
60 impl<T: Adapter> FileOps<T> { implementation
61 pub(super) const fn adapt(&self) -> &FileOps<T::Inner> { in adapt()
68 impl<T> Deref for FileOps<T> { implementation
128 const FILE_OPS: FileOps<T>;
132 const FILE_OPS: FileOps<T> = {
144 unsafe { FileOps::new(operations, 0o400) }
179 const FILE_OPS: FileOps<T>;
183 const FILE_OPS: FileOps<T> = {
[all …]
H A Dentry.rs5 debugfs::file_ops::FileOps,
62 file_ops: &'static FileOps<T>, in dynamic_file()
113 file_ops: &FileOps<T>, in file()
/linux/rust/kernel/
H A Ddebugfs.rs51 FileOps,
102 file_ops: &'static FileOps<T>, in create_file()
541 fn create_file<T: Sync>(&self, name: &CStr, data: &'data T, vtable: &'static FileOps<T>) { in create_file()