Home
last modified time | relevance | path

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

123

/freebsd-14.2/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-14.2/contrib/llvm-project/lldb/source/Utility/
H A DFileSpecList.cpp18 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(); } in Clear()
57 void FileSpecList::Dump(Stream *s, const char *separator_cstr) const { in Dump()
95 size_t FileSpecList::FindFileIndex(size_t start_idx, const FileSpec &file_spec, in FindFileIndex()
165 const FileSpec &FileSpecList::GetFileSpecAtIndex(size_t idx) const { in GetFileSpecAtIndex()
190 size_t FileSpecList::MemorySize() const { in MemorySize()
191 size_t mem_size = sizeof(FileSpecList); in MemorySize()
[all …]
/freebsd-14.2/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-14.2/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-14.2/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
448 const FileSpecList *module_search_paths_ptr,
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Target/
H A DTarget.h146 FileSpecList GetExecutableSearchPaths();
150 FileSpecList GetDebugFileSearchPaths();
152 FileSpecList GetClangModuleSearchPaths();
549 static FileSpecList GetDefaultExecutableSearchPaths();
551 static FileSpecList GetDefaultDebugFileSearchPaths();
673 const FileSpecList *containingModules,
674 const FileSpecList *source_file_list,
698 const FileSpecList *containingModules,
709 const FileSpecList *containingModules,
733 const FileSpecList *containingModules,
[all …]
H A DPlatform.h141 const FileSpecList *module_search_paths_ptr);
287 virtual FileSpecList
319 lldb::ModuleSP &module_sp, const FileSpecList *module_search_paths_ptr,
993 const FileSpecList *module_search_paths_ptr);
1008 const FileSpecList *module_search_paths_ptr);
/freebsd-14.2/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.h286 if constexpr (std::is_same_v<T, FileSpecList>) in GetValueAs()
368 std::optional<FileSpecList> GetFileSpecListValue() const;
/freebsd-14.2/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-14.2/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DObjectFile.h248 virtual uint32_t GetDependentModules(FileSpecList &file_list) = 0;
389 virtual lldb_private::FileSpecList GetReExportedLibraries() { in GetReExportedLibraries()
390 return FileSpecList(); in GetReExportedLibraries()
/freebsd-14.2/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp341 FileSpecList shared_lib_filter; in CreateBreakpointAtUserEntry()
378 const FileSpecList *containingModules, in CreateSourceRegexBreakpoint()
379 const FileSpecList *source_file_spec_list, in CreateSourceRegexBreakpoint()
429 FileSpecList compile_unit_list; in CreateBreakpoint()
494 const FileSpecList *containingModules, in CreateBreakpoint()
609 const FileSpecList *containingModules, in GetSearchFilterForModuleAndCUList()
610 const FileSpecList *containingSourceFiles) { in GetSearchFilterForModuleAndCUList()
629 const FileSpecList *containingModules, in CreateFuncRegexBreakpoint()
1495 FileSpecList dependent_files; in SetExecutableModule()
4497 return GetPropertyAtIndexAs<FileSpecList>(idx, {}); in GetExecutableSearchPaths()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolLocator/Default/
H A DSymbolLocatorDefault.cpp94 const ModuleSpec &module_spec, const FileSpecList &default_search_paths) { in LocateExecutableSymbolFile()
105 FileSpecList debug_file_search_paths = default_search_paths; in LocateExecutableSymbolFile()
H A DSymbolLocatorDefault.h47 const FileSpecList &default_search_paths);
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolLocator/Debuginfod/
H A DSymbolLocatorDebuginfod.h49 const FileSpecList &default_search_paths);
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolLocator/DebugSymbols/
H A DSymbolLocatorDebugSymbols.h47 const FileSpecList &default_search_paths);
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DCppModuleConfiguration.h68 explicit CppModuleConfiguration(const FileSpecList &support_files,
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Placeholder/
H A DObjectFilePlaceholder.h40 uint32_t GetDependentModules(lldb_private::FileSpecList &file_list) override { in GetDependentModules()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ObjectFile/PDB/
H A DObjectFilePDB.h84 uint32_t GetDependentModules(FileSpecList &files) override { return 0; } in GetDependentModules()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolVendor/wasm/
H A DSymbolVendorWasm.cpp87 FileSpecList search_paths = Target::GetDefaultDebugFileSearchPaths(); in CreateInstance()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolVendor/PECOFF/
H A DSymbolVendorPECOFF.cpp87 FileSpecList search_paths = Target::GetDefaultDebugFileSearchPaths(); in CreateInstance()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/
H A DObjectFileBreakpad.h86 uint32_t GetDependentModules(FileSpecList &files) override { return 0; } in GetDependentModules()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.h130 uint32_t GetDependentModules(lldb_private::FileSpecList &files) override;
222 mutable std::unique_ptr<lldb_private::FileSpecList> m_filespec_up;
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ObjectFile/COFF/
H A DObjectFileCOFF.h76 uint32_t GetDependentModules(lldb_private::FileSpecList &specs) override { in GetDependentModules()

123