Home
last modified time | relevance | path

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

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