Home
last modified time | relevance | path

Searched refs:FileSystem (Results 1 – 25 of 195) sorted by relevance

12345678

/freebsd-14.2/contrib/llvm-project/lldb/source/Host/common/
H A DFileSystem.cpp45 FileSystem &FileSystem::Instance() { return *InstanceImpl(); } in Instance()
47 void FileSystem::Terminate() { in Terminate()
52 std::optional<FileSystem> &FileSystem::InstanceImpl() { in InstanceImpl()
53 static std::optional<FileSystem> g_fs; in InstanceImpl()
73 FileSystem::GetStatus(const FileSpec &file_spec) const { in GetStatus()
127 uint32_t FileSystem::GetPermissions(const Twine &path, in GetPermissions()
143 bool FileSystem::Readable(const Twine &path) const { in Readable()
151 bool FileSystem::IsDirectory(const Twine &path) const { in IsDirectory()
162 bool FileSystem::IsLocal(const Twine &path) const { in IsLocal()
224 void FileSystem::Resolve(SmallVectorImpl<char> &path) { in Resolve()
[all …]
H A DMonitoringProcessLauncher.cpp32 FileSystem &fs = FileSystem::Instance(); in LaunchProcess()
36 FileSystem::Instance().Resolve(exe_spec); in LaunchProcess()
39 FileSystem::Instance().ResolveExecutableLocation(exe_spec); in LaunchProcess()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Host/
H A DFileSystem.h30 class FileSystem {
35 FileSystem() in FileSystem() function
38 FileSystem(llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> fs) in FileSystem() function
41 FileSystem(std::unique_ptr<TildeExpressionResolver> tilde_resolver) in FileSystem() function
45 FileSystem(const FileSystem &fs) = delete;
46 FileSystem &operator=(const FileSystem &fs) = delete;
48 static FileSystem &Instance();
201 llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> GetVirtualFileSystem() { in GetVirtualFileSystem()
208 static std::optional<FileSystem> &InstanceImpl();
209 llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> m_fs;
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolLocator/Default/
H A DSymbolLocatorDefault.cpp98 FileSystem::Instance().Exists(symbol_file_spec)) in LocateExecutableSymbolFile()
110 FileSystem::Instance().ResolveSymbolicLink(module_file_spec, in LocateExecutableSymbolFile()
116 FileSystem::Instance().Resolve(file_spec); in LocateExecutableSymbolFile()
125 FileSystem::Instance().Resolve(file_spec); in LocateExecutableSymbolFile()
134 FileSystem::Instance().Resolve(file_spec); in LocateExecutableSymbolFile()
141 FileSystem::Instance().Resolve(file_spec); in LocateExecutableSymbolFile()
163 FileSystem::Instance().Resolve(dirspec); in LocateExecutableSymbolFile()
164 if (!FileSystem::Instance().IsDirectory(dirspec)) in LocateExecutableSymbolFile()
189 FileSystem::Instance().Resolve(file_spec); in LocateExecutableSymbolFile()
195 if (FileSystem::Instance().Exists(file_spec)) { in LocateExecutableSymbolFile()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/WindowsDriver/
H A DMSVCPaths.h21 class FileSystem; variable
64 llvm::vfs::FileSystem &VFS);
67 bool getWindowsSDKDir(vfs::FileSystem &VFS,
75 bool getUniversalCRTSdkDir(vfs::FileSystem &VFS,
83 vfs::FileSystem &VFS, std::optional<llvm::StringRef> VCToolsDir,
89 bool findVCToolChainViaEnvironment(vfs::FileSystem &VFS, std::string &Path,
99 findVCToolChainViaSetupConfig(vfs::FileSystem &VFS,
/freebsd-14.2/contrib/llvm-project/lldb/source/Host/posix/
H A DFileSystemPosix.cpp34 const char *FileSystem::DEV_NULL = "/dev/null";
36 Status FileSystem::Symlink(const FileSpec &src, const FileSpec &dst) { in Symlink()
43 Status FileSystem::Readlink(const FileSpec &src, FileSpec &dst) { in Readlink()
56 Status FileSystem::ResolveSymbolicLink(const FileSpec &src, FileSpec &dst) { in ResolveSymbolicLink()
75 FILE *FileSystem::Fopen(const char *path, const char *mode) { in Fopen()
79 int FileSystem::Open(const char *path, int flags, int mode) { in Open()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolLocator/DebugSymbols/
H A DSymbolLocatorDebugSymbols.cpp153 FileSystem::Instance().Resolve(dsym_filespec); in LocateExecutableObjectFile()
255 FileSystem::Instance().Resolve(file_spec); in LocateExecutableObjectFile()
336 llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> vfs = in FindSymbolFileInBundle()
337 FileSystem::Instance().GetVirtualFileSystem(); in FindSymbolFileInBundle()
408 if (FileSystem::Instance().Exists(dsym_directory)) { in LookForDsymNextToExecutablePath()
414 if (FileSystem::Instance().Exists(dsym_fspec) && in LookForDsymNextToExecutablePath()
430 if (FileSystem::Instance().Exists(dsym_fspec) && in LookForDsymNextToExecutablePath()
446 if (FileSystem::Instance().Exists(dsym_yaa_fspec)) { in LookForDsymNextToExecutablePath()
595 FileSystem::Instance().Resolve(dsym_filespec); in LocateMacOSXFilesUsingDebugSymbols()
697 FileSystem::Instance().Resolve(file_spec); in LocateMacOSXFilesUsingDebugSymbols()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Frontend/
H A DPrecompiledPreamble.h30 class FileSystem; variable
88 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS,
114 PreambleBounds Bounds, llvm::vfs::FileSystem &VFS) const;
125 IntrusiveRefCntPtr<llvm::vfs::FileSystem> &VFS,
132 IntrusiveRefCntPtr<llvm::vfs::FileSystem> &VFS,
174 IntrusiveRefCntPtr<llvm::vfs::FileSystem> &VFS,
183 IntrusiveRefCntPtr<llvm::vfs::FileSystem> &VFS);
H A DCompilerInvocation.h41 class FileSystem; variable
387 IntrusiveRefCntPtr<llvm::vfs::FileSystem>
391 IntrusiveRefCntPtr<llvm::vfs::FileSystem> createVFSFromCompilerInvocation(
393 IntrusiveRefCntPtr<llvm::vfs::FileSystem> BaseFS);
395 IntrusiveRefCntPtr<llvm::vfs::FileSystem>
398 IntrusiveRefCntPtr<llvm::vfs::FileSystem> BaseFS);
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DVirtualFileSystem.h217 class FileSystem; variable
232 FileSystem *FS;
267 class FileSystem : public llvm::ThreadSafeRefCountedBase<FileSystem> {
269 virtual ~FileSystem();
348 IntrusiveRefCntPtr<FileSystem> getRealFileSystem();
366 class OverlayFileSystem : public FileSystem {
423 class ProxyFileSystem : public FileSystem {
456 IntrusiveRefCntPtr<FileSystem> FS;
501 class InMemoryFileSystem : public FileSystem {
618 std::unique_ptr<FileSystem>
[all …]
H A DFileCollector.h41 IntrusiveRefCntPtr<vfs::FileSystem> FS,
109 static IntrusiveRefCntPtr<vfs::FileSystem>
110 createCollectorVFS(IntrusiveRefCntPtr<vfs::FileSystem> BaseFS,
128 IntrusiveRefCntPtr<vfs::FileSystem> FS,
H A DSpecialCaseList.h27 class FileSystem; variable
74 create(const std::vector<std::string> &Paths, llvm::vfs::FileSystem &FS,
83 createOrDie(const std::vector<std::string> &Paths, llvm::vfs::FileSystem &FS);
110 vfs::FileSystem &VFS, std::string &Error);
H A DPGOOptions.h23 class FileSystem; variable
32 IntrusiveRefCntPtr<vfs::FileSystem> FS,
50 IntrusiveRefCntPtr<vfs::FileSystem> FS;
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangHost.cpp32 if (FileSystem::Instance().IsDirectory(clang_path)) in VerifyClangPath()
80 FileSystem::Instance().Resolve(file_spec); in DefaultComputeClangResourceDirectory()
128 FileSystem::Instance().Resolve(file_spec); in ComputeClangResourceDirectory()
143 FileSystem::Instance().Resolve(file_spec); in ComputeClangResourceDirectory()
154 FileSystem::Instance().Resolve(file_spec); in ComputeClangResourceDirectory()
/freebsd-14.2/contrib/llvm-project/lldb/source/API/
H A DSBFileSpec.cpp43 FileSystem::Instance().Resolve(*m_opaque_up); in SBFileSpec()
51 FileSystem::Instance().Resolve(*m_opaque_up); in SBFileSpec()
89 return FileSystem::Instance().Exists(*m_opaque_up); in Exists()
95 return FileSystem::Instance().ResolveExecutableLocation(*m_opaque_up); in ResolveExecutableLocation()
103 FileSystem::Instance().Resolve(result); in ResolvePath()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DSampleProfile.h35 class FileSystem; variable
44 IntrusiveRefCntPtr<vfs::FileSystem> FS = nullptr);
52 IntrusiveRefCntPtr<vfs::FileSystem> FS;
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DSanitizerSpecialCaseList.h26 class FileSystem; variable
35 create(const std::vector<std::string> &Paths, llvm::vfs::FileSystem &VFS,
40 llvm::vfs::FileSystem &VFS);
H A DFileManager.h54 IntrusiveRefCntPtr<llvm::vfs::FileSystem> FS;
137 IntrusiveRefCntPtr<llvm::vfs::FileSystem> FS = nullptr);
245 llvm::vfs::FileSystem &getVirtualFileSystem() const { return *FS; } in getVirtualFileSystem()
246 llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem>
251 void setVirtualFileSystem(IntrusiveRefCntPtr<llvm::vfs::FileSystem> FS) { in setVirtualFileSystem()
H A DFileSystemStatCache.h54 FileSystemStatCache *Cache, llvm::vfs::FileSystem &FS);
63 llvm::vfs::FileSystem &FS) = 0;
84 llvm::vfs::FileSystem &FS) override;
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/
H A DMemProfiler.h23 class FileSystem; variable
52 IntrusiveRefCntPtr<vfs::FileSystem> FS = nullptr);
57 IntrusiveRefCntPtr<vfs::FileSystem> FS;
H A DPGOInstrumentation.h34 class FileSystem; variable
70 IntrusiveRefCntPtr<vfs::FileSystem> FS = nullptr);
79 IntrusiveRefCntPtr<vfs::FileSystem> FS;
/freebsd-14.2/contrib/llvm-project/lldb/source/Target/
H A DRemoteAwarePlatform.cpp44 if (!FileSystem::Instance().Exists(resolved_module_spec.GetFileSpec())) { in ResolveExecutable()
48 FileSystem::Instance().Resolve(resolved_module_spec.GetFileSpec()); in ResolveExecutable()
51 if (!FileSystem::Instance().Exists(resolved_module_spec.GetFileSpec())) in ResolveExecutable()
52 FileSystem::Instance().ResolveExecutableLocation( in ResolveExecutable()
58 if (FileSystem::Instance().Exists(resolved_module_spec.GetFileSpec())) in ResolveExecutable()
61 const uint32_t permissions = FileSystem::Instance().GetPermissions( in ResolveExecutable()
84 if (FileSystem::Instance().Exists(resolved_module_spec.GetFileSpec())) in ResolveExecutable()
153 if (FileSystem::Instance().Readable( in ResolveExecutable()
H A DPlatform.cpp89 if (!FileSystem::Instance().GetHomeDirectory(user_home_dir)) in PlatformProperties()
401 FileSystem::Instance().Resolve(file_spec); in GetWorkingDirectory()
417 static FileSystem::EnumerateDirectoryResult
427 return FileSystem::eEnumerateDirectoryResultNext; in RecurseCopy_Callback()
459 return FileSystem::eEnumerateDirectoryResultNext; in RecurseCopy_Callback()
481 return FileSystem::eEnumerateDirectoryResultNext; in RecurseCopy_Callback()
494 return FileSystem::eEnumerateDirectoryResultNext; in RecurseCopy_Callback()
584 FileSystem::Instance().EnumerateDirectory( in Install()
879 FileSystem::Instance().Resolve(resolved_platform_path); in ResolveRemotePath()
1254 return FileSystem::Instance().Symlink(src, dst); in CreateSymlink()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/
H A DExpandResponseFilesCompilationDatabase.cpp30 llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> FS) in ExpandResponseFilesDatabase()
61 llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> FS;
68 llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> FS) { in expandResponseFiles()
/freebsd-14.2/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueFileSpec.cpp65 FileSystem::Instance().Resolve(m_current_value); in SetValueFromString()
93 const auto file_mod_time = FileSystem::Instance().GetModificationTime(m_current_value); in GetFileContents()
97 FileSystem::Instance().CreateDataBuffer(m_current_value.GetPath()); in GetFileContents()

12345678