Home
last modified time | relevance | path

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

/ohos5.0/foundation/graphic/graphic_3d/lume/LumeEngine/src/io/
H A Dproxy_filesystem.cpp43 : fileManager_(fileManager), destinations_() in ProxyFilesystem()
53 destinations_.emplace_back(path); in AppendSearchPath()
61 destinations_.emplace(destinations_.begin(), path); in PrependSearchPath()
69 const auto it = std::find(destinations_.cbegin(), destinations_.cend(), destination); in RemoveSearchPath()
70 if (it != destinations_.cend()) { in RemoveSearchPath()
71 destinations_.erase(it); in RemoveSearchPath()
79 for (auto&& destination : destinations_) { in GetEntry()
92 for (auto&& destination : destinations_) { in OpenFile()
107 for (auto&& destination : destinations_) { in CreateFile()
122 for (auto&& destination : destinations_) { in DeleteFile()
[all …]
H A Dproxy_filesystem.h71 BASE_NS::vector<BASE_NS::string> destinations_; variable