Home
last modified time | relevance | path

Searched defs:Uffd (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/rust/android-crates-io/crates/userfaultfd/src/
Dlib.rs47 pub struct Uffd { struct
51 impl Drop for Uffd { implementation
57 impl AsFd for Uffd { implementation
63 impl AsRawFd for Uffd { implementation
69 impl IntoRawFd for Uffd { implementation
75 impl FromRawFd for Uffd { implementation
93 impl Uffd { implementation
Dbuilder.rs123 fn uffd_from_dev(&self, file: &mut File, flags: i32) -> Result<Uffd> { in uffd_from_dev()
130 fn uffd_from_syscall(&self, flags: i32) -> Result<Uffd> { in uffd_from_syscall()
148 fn open_file_descriptor(&self, flags: i32) -> Result<Uffd> { in open_file_descriptor()
165 pub fn create(&self) -> Result<Uffd> { in create()
/aosp_15_r20/external/rust/android-crates-io/crates/userfaultfd/examples/
Dmanpage.rs9 fn fault_handler_thread(uffd: Uffd) { in fault_handler_thread()