Home
last modified time | relevance | path

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

123

/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DFileSpecList.h91 class FileSpecList {
99 FileSpecList();
102 FileSpecList(const FileSpecList &rhs) = default;
105 FileSpecList(FileSpecList &&rhs) = default;
108 FileSpecList(std::vector<FileSpec> &&rhs) : m_files(std::move(rhs)) {} in FileSpecList() function
111 ~FileSpecList();
122 FileSpecList &operator=(const FileSpecList &rhs) = default;
125 FileSpecList &operator=(FileSpecList &&rhs) = default;
H A DRealpathPrefixes.h33 explicit RealpathPrefixes(const FileSpecList &file_spec_list,
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DFileSpecList.cpp23 FileSpecList::FileSpecList() : m_files() {} in FileSpecList() function in FileSpecList
25 FileSpecList::~FileSpecList() = default;
28 void FileSpecList::Append(const FileSpec &file_spec) { in Append()
36 bool FileSpecList::AppendIfUnique(const FileSpec &file_spec) { in AppendIfUnique()
59 void FileSpecList::Clear() { m_files.clear(); } in Clear()
62 void FileSpecList::Dump(Stream *s, const char *separator_cstr) const { in Dump()
100 size_t FileSpecList::FindFileIndex(size_t start_idx, const FileSpec &file_spec, in FindFileIndex()
203 const FileSpec &FileSpecList::GetFileSpecAtIndex(size_t idx) const { in GetFileSpecAtIndex()
228 size_t FileSpecList::MemorySize() const { in MemorySize()
229 size_t mem_size = sizeof(FileSpecList); in MemorySize()
[all …]
H A DRealpathPrefixes.cpp20 const FileSpecList &file_spec_list, in RealpathPrefixes()
/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/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
470 const FileSpecList *module_search_paths_ptr,
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DTarget.h161 FileSpecList GetExecutableSearchPaths();
165 FileSpecList GetDebugFileSearchPaths();
167 FileSpecList GetClangModuleSearchPaths();
592 static FileSpecList GetDefaultExecutableSearchPaths();
594 static FileSpecList GetDefaultDebugFileSearchPaths();
704 lldb::BreakpointSP CreateBreakpoint(const FileSpecList *containingModules,
716 const FileSpecList *containingModules,
717 const FileSpecList *source_file_list,
741 const FileSpecList *containingModules,
742 const FileSpecList *containingSourceFiles, RegularExpression func_regexp,
[all …]
H A DPlatform.h131 const FileSpecList *module_search_paths_ptr);
277 virtual FileSpecList
309 lldb::ModuleSP &module_sp, const FileSpecList *module_search_paths_ptr,
1043 const FileSpecList *module_search_paths_ptr);
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValueFileSpecList.h52 FileSpecList GetCurrentValue() const { in GetCurrentValue()
57 void SetCurrentValue(const FileSpecList &value) { in SetCurrentValue()
71 FileSpecList m_current_value;
H A DOptionValue.h279 if constexpr (std::is_same_v<T, FileSpecList>) in GetValueAs()
365 std::optional<FileSpecList> GetFileSpecListValue() const;
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DSearchFilter.cpp190 FileSpecList &file_list) { in SerializeFileSpecList()
504 const lldb::TargetSP &target_sp, const FileSpecList &module_list) in SearchFilterByModuleList()
509 const lldb::TargetSP &target_sp, const FileSpecList &module_list, in SearchFilterByModuleList()
601 FileSpecList{}); in CreateFromStructuredData()
602 FileSpecList modules; in CreateFromStructuredData()
633 const lldb::TargetSP &target_sp, const FileSpecList &module_list, in SearchFilterByModuleListAndCU()
634 const FileSpecList &cu_list) in SearchFilterByModuleListAndCU()
649 FileSpecList modules; in CreateFromStructuredData()
674 FileSpecList cus; in CreateFromStructuredData()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp427 FileSpecList shared_lib_filter; in CreateBreakpointAtUserEntry()
464 const FileSpecList *containingModules, in CreateSourceRegexBreakpoint()
465 const FileSpecList *source_file_spec_list, in CreateSourceRegexBreakpoint()
480 BreakpointSP Target::CreateBreakpoint(const FileSpecList *containingModules, in CreateBreakpoint()
515 FileSpecList compile_unit_list; in CreateBreakpoint()
580 const FileSpecList *containingModules, in CreateBreakpoint()
581 const FileSpecList *containingSourceFiles, const char *func_name, in CreateBreakpoint()
603 Target::CreateBreakpoint(const FileSpecList *containingModules, in CreateBreakpoint()
604 const FileSpecList *containingSourceFiles, in CreateBreakpoint()
629 Target::CreateBreakpoint(const FileSpecList *containingModules, in CreateBreakpoint()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DObjectFile.h255 virtual uint32_t GetDependentModules(FileSpecList &file_list) = 0;
396 virtual lldb_private::FileSpecList GetReExportedLibraries() { in GetReExportedLibraries()
397 return FileSpecList(); in GetReExportedLibraries()
H A DLocateSymbolFile.h15 #include "lldb/Utility/FileSpecList.h"
/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/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/SymbolFile/JSON/
H A DSymbolFileJSON.h
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DLocateSymbolFile.cpp
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/COFF/
H A DObjectFileCOFF.h76 uint32_t GetDependentModules(lldb_private::FileSpecList &specs) override { in GetDependentModules()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Symtab/
H A DSymbolFileSymtab.h

123