/freebsd/contrib/llvm-project/lldb/source/Utility/ |
H A D | FileSpecList.cpp | 1 //===-- FileSpecList.cpp --------------------------------------------------===// 9 #include "lldb/Utility/FileSpecList.h" 18 FileSpecList::FileSpecList() : m_files() {} in FileSpecList() function in FileSpecList 20 FileSpecList::~FileSpecList() = default; 23 void FileSpecList::Append(const FileSpec &file_spec) { in Append() 31 bool FileSpecList::AppendIfUnique(const FileSpec &file_spec) { in AppendIfUnique() 54 void FileSpecList::Clear() { m_files.clear(); } 57 void FileSpecList [all...] |
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
H A D | FileSpecList.h | 85 class FileSpecList { 93 FileSpecList(); 96 FileSpecList(const FileSpecList &rhs) = default; 99 FileSpecList(FileSpecList &&rhs) = default; 102 FileSpecList(std::vector<FileSpec> &&rhs) : m_files(std::move(rhs)) {} in FileSpecList() function 105 ~FileSpecList(); 116 FileSpecList &operator=(const FileSpecList &rhs) = default; 119 FileSpecList &operator=(FileSpecList &&rhs) = default;
|
/freebsd/contrib/llvm-project/lldb/include/lldb/API/ |
H A D | SBFileSpecList.h | 44 const lldb_private::FileSpecList *operator->() const; 46 const lldb_private::FileSpecList *get() const; 48 const lldb_private::FileSpecList &operator*() const; 50 const lldb_private::FileSpecList &ref() const; 52 std::unique_ptr<lldb_private::FileSpecList> m_opaque_up;
|
/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBFileSpecList.cpp | 24 SBFileSpecList::SBFileSpecList() : m_opaque_up(new FileSpecList()) { in SBFileSpecList() 83 const lldb_private::FileSpecList *SBFileSpecList::operator->() const { in operator ->() 87 const lldb_private::FileSpecList *SBFileSpecList::get() const { in get() 91 const lldb_private::FileSpecList &SBFileSpecList::operator*() const { in operator *() 95 const lldb_private::FileSpecList &SBFileSpecList::ref() const { in ref()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | Target.h | 146 FileSpecList GetExecutableSearchPaths(); 150 FileSpecList GetDebugFileSearchPaths(); 152 FileSpecList GetClangModuleSearchPaths(); 560 static FileSpecList GetDefaultExecutableSearchPaths(); 562 static FileSpecList GetDefaultDebugFileSearchPaths(); 672 lldb::BreakpointSP CreateBreakpoint(const FileSpecList *containingModules, 684 const FileSpecList *containingModules, 685 const FileSpecList *source_file_list, 709 const FileSpecList *containingModules, 710 const FileSpecList *containingSourceFiles, RegularExpression func_regexp, [all …]
|
H A D | Platform.h | 128 const FileSpecList *module_search_paths_ptr); 274 virtual FileSpecList 306 lldb::ModuleSP &module_sp, const FileSpecList *module_search_paths_ptr, 980 const FileSpecList *module_search_paths_ptr);
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
H A D | SearchFilter.h | 255 OptionNames name, FileSpecList &file_list); 367 const FileSpecList &module_list); 370 const FileSpecList &module_list, 401 FileSpecList m_module_spec_list; 409 const FileSpecList &module_list, 410 const FileSpecList &cu_list); 439 FileSpecList m_cu_spec_list;
|
H A D | ModuleList.h | 35 class FileSpecList; variable 469 const FileSpecList *module_search_paths_ptr,
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/ |
H A D | CompileUnit.h | 18 #include "lldb/Utility/FileSpecList.h"
|
H A D | ObjectFile.h | 249 virtual uint32_t GetDependentModules(FileSpecList &file_list) = 0; 390 virtual lldb_private::FileSpecList GetReExportedLibraries() { in GetReExportedLibraries() 391 return FileSpecList(); in GetReExportedLibraries()
|
H A D | LocateSymbolFile.h | 15 #include "lldb/Utility/FileSpecList.h"
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
H A D | OptionValueFileSpecList.h | 50 FileSpecList GetCurrentValue() const { in GetCurrentValue() 55 void SetCurrentValue(const FileSpecList &value) { in SetCurrentValue() 69 FileSpecList m_current_value;
|
H A D | OptionValue.h | 18 #include "lldb/Utility/FileSpecList.h" 286 if constexpr (std::is_same_v<T, FileSpecList>) in GetValueAs() 368 std::optional<FileSpecList> GetFileSpecListValue() const;
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | SearchFilter.cpp | 186 FileSpecList &file_list) { in SerializeFileSpecList() 498 const lldb::TargetSP &target_sp, const FileSpecList &module_list) in SearchFilterByModuleList() 503 const lldb::TargetSP &target_sp, const FileSpecList &module_list, in SearchFilterByModuleList() 595 FileSpecList{}); in CreateFromStructuredData() 596 FileSpecList modules; in CreateFromStructuredData() 627 const lldb::TargetSP &target_sp, const FileSpecList &module_list, in SearchFilterByModuleListAndCU() 628 const FileSpecList &cu_list) in SearchFilterByModuleListAndCU() 643 FileSpecList modules; in CreateFromStructuredData() 667 FileSpecList cus; in CreateFromStructuredData()
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | Target.cpp | 342 FileSpecList shared_lib_filter; in CreateBreakpointAtUserEntry() 379 const FileSpecList *containingModules, in CreateSourceRegexBreakpoint() 380 const FileSpecList *source_file_spec_list, in CreateSourceRegexBreakpoint() 395 BreakpointSP Target::CreateBreakpoint(const FileSpecList *containingModules, in CreateBreakpoint() 430 FileSpecList compile_unit_list; in CreateBreakpoint() 495 const FileSpecList *containingModules, in CreateBreakpoint() 496 const FileSpecList *containingSourceFiles, const char *func_name, in CreateBreakpoint() 518 Target::CreateBreakpoint(const FileSpecList *containingModules, in CreateBreakpoint() 519 const FileSpecList *containingSourceFiles, in CreateBreakpoint() 544 Target::CreateBreakpoint(const FileSpecList *containingModules, in CreateBreakpoint() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolLocator/Default/ |
H A D | SymbolLocatorDefault.cpp | 98 const ModuleSpec &module_spec, const FileSpecList &default_search_paths) { in LocateExecutableSymbolFile() 109 FileSpecList debug_file_search_paths = default_search_paths; in LocateExecutableSymbolFile()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | CppModuleConfiguration.h | 68 explicit CppModuleConfiguration(const FileSpecList &support_files,
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Placeholder/ |
H A D | ObjectFilePlaceholder.h | 40 uint32_t GetDependentModules(lldb_private::FileSpecList &file_list) override { in GetDependentModules()
|
/freebsd/contrib/llvm-project/lldb/source/Symbol/ |
H A D | LocateSymbolFile.cpp |
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/ |
H A D | ObjectFileELF.h | 130 uint32_t GetDependentModules(lldb_private::FileSpecList &files) override; 225 mutable std::unique_ptr<lldb_private::FileSpecList> m_filespec_up;
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/ |
H A D | ObjectFileBreakpad.h | 86 uint32_t GetDependentModules(FileSpecList &files) override { return 0; } in GetDependentModules()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/PDB/ |
H A D | ObjectFilePDB.h | 84 uint32_t GetDependentModules(FileSpecList &files) override { return 0; } in GetDependentModules()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolVendor/PECOFF/ |
H A D | SymbolVendorPECOFF.cpp | 87 FileSpecList search_paths = Target::GetDefaultDebugFileSearchPaths(); in CreateInstance()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolVendor/wasm/ |
H A D | SymbolVendorWasm.cpp | 87 FileSpecList search_paths = Target::GetDefaultDebugFileSearchPaths(); in CreateInstance()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/JSON/ |
H A D | SymbolFileJSON.h |
|