Home
last modified time | relevance | path

Searched defs:EntryOut (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/crosvm/fuse/src/
H A Dsys.rs659 pub struct EntryOut { struct
660 pub nodeid: u64, /* Inode ID */
661 pub generation: u64, /* Inode generation: nodeid:gen must be unique for the fs's lifetime */
662 pub entry_valid: u64, /* Cache timeout for the name */
663 pub attr_valid: u64, /* Cache timeout for the attributes */
664 pub entry_valid_nsec: u32,
665 pub attr_valid_nsec: u32,
666 pub attr: Attr,
H A Dfilesystem.rs60 impl From<Entry> for sys::EntryOut { implementation
61 fn from(entry: Entry) -> sys::EntryOut { in from()