Home
last modified time | relevance | path

Searched refs:DirTreeNode (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/ability/ability_base/interfaces/kits/native/extractortool/include/
H A Dzip_file.h158 struct DirTreeNode { struct
160 std::unordered_map<std::string, std::shared_ptr<DirTreeNode>> children; argument
334 std::shared_ptr<DirTreeNode> GetDirRoot();
335 std::shared_ptr<DirTreeNode> MakeDirTree() const;
351 std::shared_ptr<DirTreeNode> dirRoot_;
/ohos5.0/foundation/ability/ability_base/interfaces/kits/native/extractortool/src/
H A Dzip_file.cpp47 void GetTreeFileList(std::shared_ptr<DirTreeNode> root, const std::string &rootPath, in GetTreeFileList()
66 void AddEntryToTree(const std::string &fileName, std::shared_ptr<DirTreeNode> root) in AddEntryToTree()
86 auto node = std::make_shared<DirTreeNode>(); in AddEntryToTree()
203 std::shared_ptr<DirTreeNode> ZipFile::MakeDirTree() const in MakeDirTree()
206 auto root = std::make_shared<DirTreeNode>(); in MakeDirTree()
214 std::shared_ptr<DirTreeNode> ZipFile::GetDirRoot() in GetDirRoot()