Home
last modified time | relevance | path

Searched refs:FileSpecList (Results 1 – 25 of 72) sorted by relevance

123

/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DFileSpecList.cpp1 //===-- 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 DFileSpecList.h85 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 DSBFileSpecList.h44 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 DSBFileSpecList.cpp24 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 DTarget.h146 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 DPlatform.h128 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 DSearchFilter.h255 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 DModuleList.h35 class FileSpecList; variable
469 const FileSpecList *module_search_paths_ptr,
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DCompileUnit.h18 #include "lldb/Utility/FileSpecList.h"
H A DObjectFile.h249 virtual uint32_t GetDependentModules(FileSpecList &file_list) = 0;
390 virtual lldb_private::FileSpecList GetReExportedLibraries() { in GetReExportedLibraries()
391 return FileSpecList(); in GetReExportedLibraries()
H A DLocateSymbolFile.h15 #include "lldb/Utility/FileSpecList.h"
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValueFileSpecList.h50 FileSpecList GetCurrentValue() const { in GetCurrentValue()
55 void SetCurrentValue(const FileSpecList &value) { in SetCurrentValue()
69 FileSpecList m_current_value;
H A DOptionValue.h18 #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 DSearchFilter.cpp186 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 DTarget.cpp342 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 DSymbolLocatorDefault.cpp98 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 DCppModuleConfiguration.h68 explicit CppModuleConfiguration(const FileSpecList &support_files,
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Placeholder/
H A DObjectFilePlaceholder.h40 uint32_t GetDependentModules(lldb_private::FileSpecList &file_list) override { in GetDependentModules()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DLocateSymbolFile.cpp
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.h130 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 DObjectFileBreakpad.h86 uint32_t GetDependentModules(FileSpecList &files) override { return 0; } in GetDependentModules()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/PDB/
H A DObjectFilePDB.h84 uint32_t GetDependentModules(FileSpecList &files) override { return 0; } in GetDependentModules()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolVendor/PECOFF/
H A DSymbolVendorPECOFF.cpp87 FileSpecList search_paths = Target::GetDefaultDebugFileSearchPaths(); in CreateInstance()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolVendor/wasm/
H A DSymbolVendorWasm.cpp87 FileSpecList search_paths = Target::GetDefaultDebugFileSearchPaths(); in CreateInstance()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/JSON/
H A DSymbolFileJSON.h

123