Searched refs:DirectoryEntry (Results 1 – 8 of 8) sorted by relevance
/packages/providers/MediaProvider/jni/ |
D | MediaProviderWrapper.cpp | 133 std::vector<std::shared_ptr<DirectoryEntry>> getFilesInDirectoryInternal( in getFilesInDirectoryInternal() 136 std::vector<std::shared_ptr<DirectoryEntry>> directory_entries; in getFilesInDirectoryInternal() 144 directory_entries.push_back(std::make_shared<DirectoryEntry>("", EFAULT)); in getFilesInDirectoryInternal() 155 directory_entries.push_back(std::make_shared<DirectoryEntry>("", EFAULT)); in getFilesInDirectoryInternal() 159 directory_entries.push_back(std::make_shared<DirectoryEntry>("", EPERM)); in getFilesInDirectoryInternal() 172 directory_entries.push_back(std::make_shared<DirectoryEntry>("", EFAULT)); in getFilesInDirectoryInternal() 175 directory_entries.push_back(std::make_shared<DirectoryEntry>(d_name.c_str(), DT_REG)); in getFilesInDirectoryInternal() 390 std::vector<std::shared_ptr<DirectoryEntry>> MediaProviderWrapper::GetDirectoryEntries( in GetDirectoryEntries() 393 std::vector<std::shared_ptr<DirectoryEntry>> res; in GetDirectoryEntries()
|
D | ReaddirHelper.cpp | 38 std::vector<std::shared_ptr<DirectoryEntry>>* directory_entries) { in addDirectoryEntriesFromLowerFs() 46 directory_entries->push_back(std::make_shared<DirectoryEntry>("", errno)); in addDirectoryEntriesFromLowerFs() 55 std::make_shared<DirectoryEntry>(entry->d_name, entry->d_type)); in addDirectoryEntriesFromLowerFs()
|
D | MediaProviderWrapper.h | 135 std::vector<std::shared_ptr<DirectoryEntry>> GetDirectoryEntries(uid_t uid,
|
D | node-inl.h | 75 std::vector<std::shared_ptr<DirectoryEntry>> de;
|
D | FuseDaemon.cpp | 70 using mediaprovider::fuse::DirectoryEntry; 1576 std::shared_ptr<DirectoryEntry> de; in do_readdir_common()
|
/packages/providers/MediaProvider/jni/include/libfuse_jni/ |
D | ReaddirHelper.h | 33 struct DirectoryEntry { struct 41 DirectoryEntry(const std::string& name, int type) : d_name(name), d_type(type) {} in DirectoryEntry() function 53 std::vector<std::shared_ptr<DirectoryEntry>>* directory_entries); argument
|
/packages/modules/Virtualization/zipfuse/src/ |
D | inode.rs | 55 Directory(HashMap<CString, DirectoryEntry>), 60 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() argument 145 Some(DirectoryEntry { inode, .. }) => Some(*inode), in find() 160 self.get_mut(parent).unwrap().add_to_directory(name, DirectoryEntry { inode, kind }); in add()
|
D | main.rs | 38 use crate::inode::{DirectoryEntry, Inode, InodeData, InodeKind, InodeTable}; 96 buf: Box<[(CString, DirectoryEntry)]>, 283 let mut buf: Vec<(CString, DirectoryEntry)> = Vec::with_capacity(directory.len()); in opendir() 349 inner: Vec<(CString, DirectoryEntry)>,
|