Home
last modified time | relevance | path

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

/aosp12/packages/providers/MediaProvider/jni/include/libfuse_jni/
H A DReaddirHelper.h33 struct DirectoryEntry { struct
41 DirectoryEntry(const std::string& name, int type) : d_name(name), d_type(type) {} in DirectoryEntry() argument
53 std::vector<std::shared_ptr<DirectoryEntry>>* directory_entries); argument
/aosp12/system/iorap/src/inode2filename/
H A Dsearch_directories.cc299 struct DirectoryEntry { struct
301 using ObservableT = rx::observable<ResultT>;
307 std::string filename{kInvalidFileName};
309 ino_t d_ino{kInvalidIno};
315 bool moved_from_{false};
316 size_t debug_counter_{0};
322 DirectoryEntry() noexcept { in DirectoryEntry() argument
327 DirectoryEntry(std::string filename, ino_t d_ino, unsigned char d_type) noexcept in DirectoryEntry() function
335 DirectoryEntry(const DirectoryEntry& other) noexcept { in DirectoryEntry() argument
384 DirectoryEntry(DirectoryEntry&& other) noexcept { in DirectoryEntry() function
[all …]
/aosp12/packages/modules/Virtualization/zipfuse/src/
H A Dinode.rs60 pub struct DirectoryEntry { struct
76 pub fn get_directory(&self) -> Option<&HashMap<CString, DirectoryEntry>> { in get_directory() argument
105 fn add_to_directory(&mut self, name: CString, entry: DirectoryEntry) { in add_to_directory()