Home
last modified time | relevance | path

Searched refs:ProxyFilesystem (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/graphic/graphic_3d/lume/LumeEngine/src/io/
H A Dproxy_filesystem.cpp42 ProxyFilesystem::ProxyFilesystem(FileManager& fileManager, const string_view destination) in ProxyFilesystem() function in ProxyFilesystem
48 void ProxyFilesystem::AppendSearchPath(string_view path) in AppendSearchPath()
56 void ProxyFilesystem::PrependSearchPath(string_view path) in PrependSearchPath()
64 void ProxyFilesystem::RemoveSearchPath(string_view destination) in RemoveSearchPath()
75 IDirectory::Entry ProxyFilesystem::GetEntry(const string_view path) in GetEntry()
88 IFile::Ptr ProxyFilesystem::OpenFile(const string_view path) in OpenFile()
103 IFile::Ptr ProxyFilesystem::CreateFile(const string_view path) in CreateFile()
118 bool ProxyFilesystem::DeleteFile(const string_view path) in DeleteFile()
132 IDirectory::Ptr ProxyFilesystem::OpenDirectory(const string_view path) in OpenDirectory()
153 IDirectory::Ptr ProxyFilesystem::CreateDirectory(const string_view path) in CreateDirectory()
[all …]
H A Dproxy_filesystem.h35 class ProxyFilesystem final : public IFilesystem {
37 ProxyFilesystem(FileManager& fileManager, BASE_NS::string_view destination);
39 ProxyFilesystem() = delete;
40 ProxyFilesystem(ProxyFilesystem const&) = delete;
41 ProxyFilesystem& operator=(ProxyFilesystem const&) = delete;
43 ~ProxyFilesystem() override = default;
H A Dfile_manager.h33 class ProxyFilesystem;
83 BASE_NS::unordered_map<BASE_NS::string, ProxyFilesystem*> proxyFilesystems_;
H A Dfile_manager.cpp353 auto pfs = make_unique<ProxyFilesystem>(*this, uri); in RegisterPath()