Searched refs:SupportFile (Results 1 – 11 of 11) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Utility/ |
| H A D | SupportFile.h | 21 class SupportFile { 23 SupportFile() : m_file_spec(), m_checksum() {} in SupportFile() function 24 SupportFile(const FileSpec &spec) : m_file_spec(spec), m_checksum() {} in SupportFile() function 25 SupportFile(const FileSpec &spec, const Checksum &checksum) in SupportFile() function 28 SupportFile(const SupportFile &other) = delete; 29 SupportFile(SupportFile &&other) = default; 31 virtual ~SupportFile() = default; 33 bool operator==(const SupportFile &other) const { 37 bool operator!=(const SupportFile &other) const { return !(*this == other); }
|
| H A D | FileSpecList.h | 29 typedef std::vector<std::shared_ptr<SupportFile>> collection; 35 return Append(std::make_shared<SupportFile>(file)); in Append() 37 void Append(std::shared_ptr<SupportFile> &&file) { in Append() 74 std::make_shared<SupportFile>(std::forward<Args>(args)...)); in EmplaceBack()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Utility/ |
| H A D | FileSpecList.cpp | 44 [&](const std::shared_ptr<SupportFile> &support_file) { in AppendIfUnique() 179 std::shared_ptr<SupportFile>
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | LineEntry.cpp | 23 original_file_sp = std::make_shared<SupportFile>(); in Clear()
|
| H A D | CompileUnit.cpp | 26 std::make_shared<SupportFile>(FileSpec(pathname)), cu_sym_id, in CompileUnit()
|
| H A D | SymbolContext.cpp | 478 std::make_shared<SupportFile>( in GetParentOfInlinedScope()
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/ |
| H A D | lldb-forward.h | 215 class SupportFile; variable 466 typedef std::shared_ptr<lldb_private::SupportFile> SupportFileSP;
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | SymbolFileDWARFDebugMap.cpp | 603 std::make_shared<SupportFile>(so_file_spec), cu_id, in ParseCompileUnitAtIndex() 619 std::make_shared<SupportFile>(so_file_spec), in ParseCompileUnitAtIndex()
|
| H A D | SymbolFileDWARF.cpp | 245 struct LazyDWARFSourceFile : public SupportFile { 248 : SupportFile(fs), source(source), style(style) {} in LazyDWARFSourceFile() 843 initialize_cu(std::make_shared<SupportFile>(cu_file_spec), in ParseCompileUnit()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/ |
| H A D | SymbolFileBreakpad.cpp | 221 /*user_data*/ nullptr, std::make_shared<SupportFile>(spec), index, in ParseCompileUnitAtIndex()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/ |
| H A D | SymbolFileNativePDB.cpp | 538 m_objfile_sp->GetModule(), nullptr, std::make_shared<SupportFile>(fs), in CreateCompileUnit()
|