Home
last modified time | relevance | path

Searched refs:SupportFile (Results 1 – 11 of 11) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Utility/
H A DSupportFile.h21 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 DFileSpecList.h29 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 DFileSpecList.cpp44 [&](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 DLineEntry.cpp23 original_file_sp = std::make_shared<SupportFile>(); in Clear()
H A DCompileUnit.cpp26 std::make_shared<SupportFile>(FileSpec(pathname)), cu_sym_id, in CompileUnit()
H A DSymbolContext.cpp478 std::make_shared<SupportFile>( in GetParentOfInlinedScope()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h215 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 DSymbolFileDWARFDebugMap.cpp603 std::make_shared<SupportFile>(so_file_spec), cu_id, in ParseCompileUnitAtIndex()
619 std::make_shared<SupportFile>(so_file_spec), in ParseCompileUnitAtIndex()
H A DSymbolFileDWARF.cpp245 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 DSymbolFileBreakpad.cpp221 /*user_data*/ nullptr, std::make_shared<SupportFile>(spec), index, in ParseCompileUnitAtIndex()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DSymbolFileNativePDB.cpp538 m_objfile_sp->GetModule(), nullptr, std::make_shared<SupportFile>(fs), in CreateCompileUnit()