Searched refs:FileCache (Results 1 – 9 of 9) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/lldb/source/Host/common/ |
| H A D | FileCache.cpp | 17 FileCache *FileCache::m_instance = nullptr; 19 FileCache &FileCache::GetInstance() { in GetInstance() 21 m_instance = new FileCache(); in GetInstance() 26 lldb::user_id_t FileCache::OpenFile(const FileSpec &file_spec, in OpenFile() 43 bool FileCache::CloseFile(lldb::user_id_t fd, Status &error) { in CloseFile() 63 uint64_t FileCache::WriteFile(lldb::user_id_t fd, uint64_t offset, in WriteFile() 90 uint64_t FileCache::ReadFile(lldb::user_id_t fd, uint64_t offset, void *dst, in ReadFile()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Host/ |
| H A D | FileCache.h | 22 class FileCache { 24 FileCache() = default; 29 static FileCache &GetInstance(); 41 static FileCache *m_instance;
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | SourceManager.h | 108 typedef std::map<FileSpec, FileSP> FileCache; typedef 109 FileCache m_file_cache;
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/ |
| H A D | DwarfTransformer.cpp | 30 std::vector<uint32_t> FileCache; member 37 FileCache.clear(); in CUInfo() 39 FileCache.assign(LineTable->Prologue.FileNames.size() + 1, UINT32_MAX); in CUInfo() 69 assert(DwarfFileIdx < FileCache.size()); in DWARFToGSYMFileIndex() 70 uint32_t &GsymFileIdx = FileCache[DwarfFileIdx]; in DWARFToGSYMFileIndex()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Target/ |
| H A D | RemoteAwarePlatform.cpp | 222 return FileCache::GetInstance().OpenFile(file_spec, flags, mode, error); in OpenFile() 230 return FileCache::GetInstance().CloseFile(fd, error); in CloseFile() 240 return FileCache::GetInstance().ReadFile(fd, offset, dst, dst_len, error); in ReadFile() 250 return FileCache::GetInstance().WriteFile(fd, offset, src, src_len, error); in WriteFile()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/ |
| H A D | module.modulemap | 20 module FileCache { header "Host/FileCache.h" export * }
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/ |
| H A D | PlatformPOSIX.cpp | 220 user_id_t fd_dst = FileCache::GetInstance().OpenFile( in GetFile() 241 if (FileCache::GetInstance().WriteFile(fd_dst, offset, in GetFile() 256 !FileCache::GetInstance().CloseFile(fd_dst, error)) { in GetFile()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Core/ |
| H A D | SourceManager.cpp | 703 FileCache::iterator pos = m_file_cache.find(file_spec); in AddSourceFile() 715 FileCache::const_iterator pos = m_file_cache.find(file_spec); in FindSourceFile()
|
| /freebsd-13.1/lib/clang/liblldb/ |
| H A D | Makefile | 228 SRCS+= Host/common/FileCache.cpp
|