Home
last modified time | relevance | path

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

12345678

/freebsd-src/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()
57 vfs::directory_iterator FileSystem::DirBegin(const FileSpec &file_spec, in DirBegin()
67 vfs::directory_iterator FileSystem::DirBegin(const Twine &dir, in DirBegin()
73 FileSystem::GetStatus(const FileSpec &file_spec) const { in GetStatus()
80 llvm::ErrorOr<vfs::Status> FileSystem::GetStatus(const Twine &path) const { in GetStatus()
85 FileSystem::GetModificationTime(const FileSpec &file_spec) const { in GetModificationTime()
91 sys::TimePoint<> FileSystem::GetModificationTime(const Twine &path) const { in GetModificationTime()
[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-src/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-src/contrib/llvm-project/lldb/source/Plugins/SymbolLocator/Default/
H A DSymbolLocatorDefault.cpp22 #include "lldb/Host/FileSystem.h"
36 #include "llvm/Support/FileSystem.h"
102 FileSystem::Instance().Exists(symbol_file_spec)) in LocateExecutableSymbolFile()
114 FileSystem::Instance().ResolveSymbolicLink(module_file_spec, in LocateExecutableSymbolFile()
120 FileSystem::Instance().Resolve(file_spec); in LocateExecutableSymbolFile()
129 FileSystem::Instance().Resolve(file_spec); in LocateExecutableSymbolFile()
138 FileSystem::Instance().Resolve(file_spec); in LocateExecutableSymbolFile()
145 FileSystem::Instance().Resolve(file_spec); in LocateExecutableSymbolFile()
161 FileSystem::Instance().Resolve(file_spec); in LocateExecutableSymbolFile()
185 FileSystem in LocateExecutableSymbolFile()
[all...]
/freebsd-src/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-src/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-src/contrib/llvm-project/lldb/source/Plugins/SymbolLocator/DebugSymbols/
H A DSymbolLocatorDebugSymbols.cpp19 #include "lldb/Host/FileSystem.h"
34 #include "llvm/Support/FileSystem.h"
153 FileSystem::Instance().Resolve(dsym_filespec); in LocateExecutableObjectFile()
155 if (FileSystem::Instance().IsDirectory(dsym_filespec)) { in LocateExecutableObjectFile()
186 if (FileSystem::Instance().Exists(module_spec.GetFileSpec())) { in LocateExecutableObjectFile()
235 FileSystem::Instance().Resolve(exec_filespec); in LocateExecutableObjectFile()
236 if (FileSystem::Instance().Exists(exec_filespec)) { in LocateExecutableObjectFile()
255 FileSystem::Instance().Resolve(file_spec); in LocateExecutableObjectFile()
271 FileSystem::Instance().Resolve(bundle_exe_file_spec); in LocateExecutableObjectFile()
336 llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> vf in FindSymbolFileInBundle()
[all...]
/freebsd-src/contrib/llvm-project/clang/include/clang/Frontend/
H A DPrecompiledPreamble.h30 class FileSystem; variable
70 /// \param VFS An instance of vfs::FileSystem to be used for file
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
402 IntrusiveRefCntPtr<llvm::vfs::FileSystem>
406 IntrusiveRefCntPtr<llvm::vfs::FileSystem> createVFSFromCompilerInvocation(
408 IntrusiveRefCntPtr<llvm::vfs::FileSystem> BaseFS);
410 IntrusiveRefCntPtr<llvm::vfs::FileSystem>
413 IntrusiveRefCntPtr<llvm::vfs::FileSystem> BaseFS);
/freebsd-src/contrib/llvm-project/llvm/include/llvm/Support/
H A DVirtualFileSystem.h10 /// Defines the virtual file system interface vfs::FileSystem.
26 #include "llvm/Support/FileSystem.h"
215 class FileSystem;
230 FileSystem *FS;
235 recursive_directory_iterator(FileSystem &FS, const Twine &Path,
265 class FileSystem : public llvm::ThreadSafeRefCountedBase<FileSystem>,
266 public RTTIExtends<FileSystem, RTTIRoot> {
269 virtual ~FileSystem();
332 using VisitCallbackTy = llvm::function_ref<void(FileSystem
217 class FileSystem; global() variable
[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
33 IntrusiveRefCntPtr<vfs::FileSystem> FS,
53 IntrusiveRefCntPtr<vfs::FileSystem> FS;
/freebsd-src/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-src/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-src/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-src/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
72 IntrusiveRefCntPtr<vfs::FileSystem> FS = nullptr);
81 IntrusiveRefCntPtr<vfs::FileSystem> FS;
/freebsd-src/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.h29 #include "llvm/Support/FileSystem.h"
54 IntrusiveRefCntPtr<llvm::vfs::FileSystem> FS;
143 IntrusiveRefCntPtr<llvm::vfs::FileSystem> FS = nullptr);
251 llvm::vfs::FileSystem &getVirtualFileSystem() const { return *FS; } in setVirtualFileSystem()
252 llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> in setVirtualFileSystem()
261 void setVirtualFileSystem(IntrusiveRefCntPtr<llvm::vfs::FileSystem> FS) {
H A DFileSystemStatCache.h54 FileSystemStatCache *Cache, llvm::vfs::FileSystem &FS);
63 llvm::vfs::FileSystem &FS) = 0;
84 llvm::vfs::FileSystem &FS) override;
/freebsd-src/contrib/llvm-project/lldb/source/Target/
H A DRemoteAwarePlatform.cpp13 #include "lldb/Host/FileSystem.h"
41 if (!FileSystem::Instance().Exists(resolved_file_spec)) { in ResolveExecutable()
44 FileSystem::Instance().Resolve(resolved_file_spec); in ResolveExecutable()
47 if (!FileSystem::Instance().Exists(resolved_file_spec)) in ResolveExecutable()
48 FileSystem::Instance().ResolveExecutableLocation(resolved_file_spec); in ResolveExecutable()
H A DPlatform.cpp23 #include "lldb/Host/FileSystem.h"
43 #include "llvm/Support/FileSystem.h"
89 if (!FileSystem::Instance().GetHomeDirectory(user_home_dir)) in PlatformProperties()
367 FileSystem::Instance().Resolve(file_spec); in GetOSVersion()
383 static FileSystem::EnumerateDirectoryResult in GetOSKernelDescription()
393 return FileSystem::eEnumerateDirectoryResultNext;
407 return FileSystem::eEnumerateDirectoryResultQuit; // got an error, bail out in GetWorkingDirectory()
419 FileSystem::Instance().EnumerateDirectory(src_dir_path, true, true, true, in RecurseCopy_Callback()
423 return FileSystem::eEnumerateDirectoryResultQuit; // got an error, bail out in RecurseCopy_Callback()
425 return FileSystem in RecurseCopy_Callback()
[all...]
/freebsd-src/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-src/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