/freebsd/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; 41 bool Equal(const SupportFile &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/contrib/llvm-project/lldb/source/Symbol/ |
H A D | LineEntry.cpp | 17 : range(), file_sp(std::make_shared<SupportFile>()), in LineEntry() 18 original_file_sp(std::make_shared<SupportFile>()), in LineEntry() 24 file_sp = std::make_shared<SupportFile>(); in Clear() 25 original_file_sp = std::make_shared<SupportFile>(); in Clear() 203 SupportFile::eEqualFileSpecAndChecksumIfSet) && in GetSameLineContiguousAddressRange() 249 file_sp = std::make_shared<SupportFile>(*new_file_spec, in ApplyFileMappings()
|
H A D | CompileUnit.cpp | 26 std::make_shared<SupportFile>(FileSpec(pathname)), cu_sym_id, in CompileUnit()
|
H A D | SymbolContext.cpp | 484 next_frame_sc.line_entry.file_sp = std::make_shared<SupportFile>( in GetParentOfInlinedScope() 487 std::make_shared<SupportFile>( in GetParentOfInlinedScope()
|
H A D | LineTable.cpp | 291 line_entry.file_sp = std::make_shared<SupportFile>( in ConvertEntryAtIndexToLineEntry()
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | ThreadPlanStepOverRange.cpp | 225 SupportFile::eEqualFileSpecAndChecksumIfSet) && in ShouldStop() 250 SupportFile::eEqualFileSpecAndChecksumIfSet)) { in ShouldStop() 286 SupportFile::eEqualFileSpecAndChecksumIfSet)) { in ShouldStop()
|
H A D | ThreadPlanStepRange.cpp | 125 SupportFile::eEqualFileSpecAndChecksumIfSet)) { in InRange()
|
/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBLineEntry.cpp | 127 ref().file_sp = std::make_shared<SupportFile>(filespec.ref()); in SetFileSpec() 129 ref().file_sp = std::make_shared<SupportFile>(); in SetFileSpec()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/ |
H A D | lldb-forward.h | 219 class SupportFile; variable 474 typedef std::shared_ptr<lldb_private::SupportFile> SupportFileSP;
|
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/ |
H A D | BreakpointResolver.cpp | 227 SupportFile::eEqualFileSpecAndChecksumIfSet)) { in SetSCMatchesByLine()
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectSource.cpp | 752 SupportFile::eEqualFileSpecAndChecksumIfSet) && in operator ==() 760 SupportFile::eEqualFileSpecAndChecksumIfSet) || in operator !=()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
H A D | SymbolFileDWARFDebugMap.cpp | 604 std::make_shared<SupportFile>(so_file_spec), cu_id, in ParseCompileUnitAtIndex() 620 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() 850 initialize_cu(std::make_shared<SupportFile>(cu_file_spec), in ParseCompileUnit()
|
/freebsd/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/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()
|