Searched refs:ProxyFilesystem (Results 1 – 4 of 4) sorted by relevance
42 ProxyFilesystem::ProxyFilesystem(FileManager& fileManager, const string_view destination) in ProxyFilesystem() function in ProxyFilesystem48 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 …]
35 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;
33 class ProxyFilesystem;83 BASE_NS::unordered_map<BASE_NS::string, ProxyFilesystem*> proxyFilesystems_;
353 auto pfs = make_unique<ProxyFilesystem>(*this, uri); in RegisterPath()