Home
last modified time | relevance | path

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

123

/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DFileSpecList.cpp22 FileSpecList::FileSpecList() : m_files() {} in FileSpecList() function in FileSpecList
24 FileSpecList::FileSpecList(const FileSpecList &rhs) = default;
26 FileSpecList::~FileSpecList() = default;
31 const FileSpecList &FileSpecList::operator=(const FileSpecList &rhs) { in operator =()
40 void FileSpecList::Append(const FileSpec &file_spec) { in Append()
50 bool FileSpecList::AppendIfUnique(const FileSpec &file_spec) { in AppendIfUnique()
62 void FileSpecList::Clear() { m_files.clear(); } in Clear()
130 size_t FileSpecList::MemorySize() const { in MemorySize()
131 size_t mem_size = sizeof(FileSpecList); in MemorySize()
143 size_t FileSpecList::GetSize() const { return m_files.size(); } in GetSize()
[all …]
H A DSearchFilter.cpp193 FileSpecList &file_list) { in SerializeFileSpecList()
543 const lldb::TargetSP &target_sp, const FileSpecList &module_list) in SearchFilterByModuleList()
548 const lldb::TargetSP &target_sp, const FileSpecList &module_list, in SearchFilterByModuleList()
660 FileSpecList modules; in CreateFromStructuredData()
697 const lldb::TargetSP &target_sp, const FileSpecList &module_list, in SearchFilterByModuleListAndCU()
698 const FileSpecList &cu_list) in SearchFilterByModuleListAndCU()
725 FileSpecList modules; in CreateFromStructuredData()
749 FileSpecList cus; in CreateFromStructuredData()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/
H A DFileSpecList.h32 class FileSpecList {
39 FileSpecList();
49 FileSpecList(const FileSpecList &rhs);
54 ~FileSpecList();
67 const FileSpecList &operator=(const FileSpecList &rhs);
211 FileSpecList &matches);
H A DSearchFilter.h302 OptionNames name, FileSpecList &file_list);
430 const FileSpecList &module_list);
433 const FileSpecList &module_list,
473 FileSpecList m_module_spec_list;
489 const FileSpecList &module_list,
490 const FileSpecList &cu_list);
524 FileSpecList m_cu_spec_list;
H A DModuleList.h37 class FileSpecList; variable
537 const FileSpecList *module_search_paths_ptr,
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBFileSpecList.cpp24 SBFileSpecList::SBFileSpecList() : m_opaque_ap(new FileSpecList()) {} in SBFileSpecList()
30 m_opaque_ap.reset(new FileSpecList(*(rhs.get()))); in SBFileSpecList()
44 m_opaque_ap.reset(new lldb_private::FileSpecList(*(rhs.get()))); in operator =()
72 const lldb_private::FileSpecList *SBFileSpecList::operator->() const { in operator ->()
76 const lldb_private::FileSpecList *SBFileSpecList::get() const { in get()
80 const lldb_private::FileSpecList &SBFileSpecList::operator*() const { in operator *()
84 const lldb_private::FileSpecList &SBFileSpecList::ref() const { in ref()
H A DSBCompileUnit.cpp129 FileSpecList &support_files = m_opaque_ptr->GetSupportFiles(); in GetNumSupportFiles()
161 FileSpecList &support_files = m_opaque_ptr->GetSupportFiles(); in GetSupportFileAtIndex()
182 FileSpecList &support_files = m_opaque_ptr->GetSupportFiles(); in FindSupportFileIndex()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBFileSpecList.h45 const lldb_private::FileSpecList *operator->() const;
47 const lldb_private::FileSpecList *get() const;
49 const lldb_private::FileSpecList &operator*() const;
51 const lldb_private::FileSpecList &ref() const;
53 std::unique_ptr<lldb_private::FileSpecList> m_opaque_ap;
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DOptionValueFileSpecList.h22 OptionValueFileSpecList(const FileSpecList &current_value) in OptionValueFileSpecList()
57 FileSpecList &GetCurrentValue() { return m_current_value; } in GetCurrentValue()
59 const FileSpecList &GetCurrentValue() const { return m_current_value; } in GetCurrentValue()
61 void SetCurrentValue(const FileSpecList &value) { m_current_value = value; } in SetCurrentValue()
64 FileSpecList m_current_value;
H A DCommandCompletions.h146 FileSpecList m_matching_files;
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DTarget.h125 FileSpecList &GetExecutableSearchPaths();
127 FileSpecList &GetDebugFileSearchPaths();
129 FileSpecList &GetClangModuleSearchPaths();
497 static FileSpecList GetDefaultExecutableSearchPaths();
499 static FileSpecList GetDefaultDebugFileSearchPaths();
501 static FileSpecList GetDefaultClangModuleSearchPaths();
582 const FileSpecList *containingModules,
583 const FileSpecList *source_file_list,
607 const FileSpecList *containingModules,
618 const FileSpecList *containingModules,
[all …]
H A DPlatform.h157 const FileSpecList *module_search_paths_ptr);
321 virtual FileSpecList
327 const FileSpecList *module_search_paths_ptr,
1013 const FileSpecList *module_search_paths_ptr,
1039 const FileSpecList *module_search_paths_ptr,
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/Breakpad/
H A DObjectFileBreakpad.h89 FileSpecList GetDebugSymbolFilePaths() override { return FileSpecList(); } in GetDebugSymbolFilePaths()
91 uint32_t GetDependentModules(FileSpecList &files) override { return 0; } in GetDependentModules()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DObjectFile.h264 virtual uint32_t GetDependentModules(FileSpecList &file_list) = 0;
426 virtual lldb_private::FileSpecList GetDebugSymbolFilePaths() { in GetDebugSymbolFilePaths()
427 return FileSpecList(); in GetDebugSymbolFilePaths()
440 virtual lldb_private::FileSpecList GetReExportedLibraries() { in GetReExportedLibraries()
441 return FileSpecList(); in GetReExportedLibraries()
H A DCompileUnit.h259 FileSpecList &GetSupportFiles();
430 FileSpecList m_support_files; ///< Files associated with this compile unit's
H A DSymbolVendor.h58 FileSpecList &support_files);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DTarget.cpp308 const FileSpecList *containingModules, in CreateSourceRegexBreakpoint()
309 const FileSpecList *source_file_spec_list, in CreateSourceRegexBreakpoint()
357 FileSpecList compile_unit_list; in CreateBreakpoint()
417 const FileSpecList *containingModules, in CreateBreakpoint()
530 const FileSpecList *containingModules, in GetSearchFilterForModuleAndCUList()
531 const FileSpecList *containingSourceFiles) { in GetSearchFilterForModuleAndCUList()
550 const FileSpecList *containingModules, in CreateFuncRegexBreakpoint()
1453 FileSpecList dependent_files; in SetExecutableModule()
2308 return FileSpecList(); in GetDefaultExecutableSearchPaths()
2315 return FileSpecList(); in GetDefaultDebugFileSearchPaths()
[all …]
H A DPlatform.cpp176 FileSpecList
179 return FileSpecList(); in LocateExecutableScriptingResources()
218 const FileSpecList *module_search_paths_ptr, in GetSharedModule()
890 const FileSpecList *module_search_paths_ptr) { in ResolveExecutable()
1553 const FileSpecList *module_search_paths_ptr, Platform &remote_platform) { in GetCachedExecutable()
1567 const FileSpecList *module_search_paths_ptr, Platform &remote_platform) { in LoadCachedExecutable()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.h128 lldb_private::FileSpecList GetDebugSymbolFilePaths() override;
130 uint32_t GetDependentModules(lldb_private::FileSpecList &files) override;
214 mutable std::unique_ptr<lldb_private::FileSpecList> m_filespec_ap;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DCompileUnit.cpp258 FileSpecList &support_files = GetSupportFiles(); in FindLineEntry()
407 FileSpecList &CompileUnit::GetSupportFiles() { in GetSupportFiles()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/JIT/
H A DObjectFileJIT.h80 uint32_t GetDependentModules(lldb_private::FileSpecList &files) override;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Symtab/
H A DSymbolFileSymtab.h61 lldb_private::FileSpecList &support_files) override;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Breakpad/
H A DSymbolFileBreakpad.h67 FileSpecList &support_files) override { in ParseSupportFiles()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolVendor/ELF/
H A DSymbolVendorELF.cpp84 FileSpecList file_spec_list = obj_file->GetDebugSymbolFilePaths(); in CreateInstance()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DOptionValue.cpp340 FileSpecList OptionValue::GetFileSpecListValue() const { in GetFileSpecListValue()
344 return FileSpecList(); in GetFileSpecListValue()

123