Home
last modified time | relevance | path

Searched defs:file (Results 1 – 5 of 5) sorted by relevance

/rust/kernel/
Dmiscdevice.rs300 let file = unsafe { File::from_raw_file(raw_file) }; in open() localVariable
341 file: *mut bindings::file, in mmap() argument
355 let file = unsafe { File::from_raw_file(file) }; in mmap() localVariable
367 file: *mut bindings::file, in llseek() argument
379 let file = unsafe { LocalFile::from_raw_file(file) }; in llseek() localVariable
428 unsafe extern "C" fn ioctl(file: *mut bindings::file, cmd: c_uint, arg: c_ulong) -> c_long { in ioctl() argument
437 let file = unsafe { File::from_raw_file(file) }; in ioctl() localVariable
450 file: *mut bindings::file, in compat_ioctl() argument
462 let file = unsafe { File::from_raw_file(file) }; in compat_ioctl() localVariable
474 unsafe extern "C" fn show_fdinfo(seq_file: *mut bindings::seq_file, file: *mut bindings::file) { in show_fdinfo() argument
[all …]
Dfs.rs7 pub mod file; module
/rust/helpers/
Dsecurity.c40 const struct file *file) in rust_helper_security_binder_transfer_file()
/rust/macros/
Dmodule.rs196 let file = in module() localVariable
/rust/kernel/fs/
Dfile.rs308 pub fn as_ptr(&self) -> *mut bindings::file { in as_ptr()