Home
last modified time | relevance | path

Searched refs:SBFileSpecList (Results 1 – 25 of 29) sorted by relevance

12

/llvm-project/lldb/source/API/
H A DSBFileSpecList.cpp24 SBFileSpecList::SBFileSpecList() : m_opaque_up(new FileSpecList()) { in SBFileSpecList() function in SBFileSpecList
28 SBFileSpecList::SBFileSpecList(const SBFileSpecList &rhs) { in SBFileSpecList() function in SBFileSpecList
34 SBFileSpecList::~SBFileSpecList() = default;
36 const SBFileSpecList &SBFileSpecList::operator=(const SBFileSpecList &rhs) { in operator =()
44 uint32_t SBFileSpecList::GetSize() const { in GetSize()
50 void SBFileSpecList::Append(const SBFileSpec &sb_file) { in Append()
56 bool SBFileSpecList::AppendIfUnique(const SBFileSpec &sb_file) { in AppendIfUnique()
62 void SBFileSpecList::Clear() { in Clear()
68 uint32_t SBFileSpecList::FindFileIndex(uint32_t idx, const SBFileSpec &sb_file, in FindFileIndex()
75 const SBFileSpec SBFileSpecList::GetFileSpecAtIndex(uint32_t idx) const { in GetFileSpecAtIndex()
[all …]
H A DSBTarget.cpp706 SBFileSpecList empty_list; in BreakpointCreateByLocation()
713 SBFileSpecList &sb_module_list) { in BreakpointCreateByLocation()
722 lldb::addr_t offset, SBFileSpecList &sb_module_list) { in BreakpointCreateByLocation()
749 lldb::addr_t offset, SBFileSpecList &sb_module_list, in BreakpointCreateByLocation()
807 const SBFileSpecList &module_list, in BreakpointCreateByName()
808 const SBFileSpecList &comp_unit_list) { in BreakpointCreateByName()
819 const SBFileSpecList &module_list, const SBFileSpecList &comp_unit_list) { in BreakpointCreateByName()
830 LanguageType symbol_language, const SBFileSpecList &module_list, in BreakpointCreateByName()
831 const SBFileSpecList in BreakpointCreateByName()
[all...]
/llvm-project/lldb/test/API/symbol_ondemand/breakpoint_language/
H A DTestBreakpointLanguageOnDemand.py41 lldb.SBFileSpecList(),
42 lldb.SBFileSpecList(),
50 lldb.SBFileSpecList(),
51 lldb.SBFileSpecList(),
59 lldb.SBFileSpecList(),
60 lldb.SBFileSpecList(),
85 lldb.SBFileSpecList(),
86 lldb.SBFileSpecList(),
95 lldb.SBFileSpecList(),
96 lldb.SBFileSpecList(),
[all …]
/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_language/
H A DTestBreakpointLanguage.py35 lldb.SBFileSpecList(),
36 lldb.SBFileSpecList(),
44 lldb.SBFileSpecList(),
45 lldb.SBFileSpecList(),
53 lldb.SBFileSpecList(),
54 lldb.SBFileSpecList(),
74 lldb.SBFileSpecList(),
75 lldb.SBFileSpecList(),
84 lldb.SBFileSpecList(),
85 lldb.SBFileSpecList(),
[all …]
/llvm-project/lldb/include/lldb/API/
H A DSBTarget.h18 #include "lldb/API/SBFileSpecList.h"
613 lldb::addr_t offset, SBFileSpecList &module_list);
618 SBFileSpecList &module_list);
623 SBFileSpecList &module_list,
632 const SBFileSpecList &module_list,
633 const SBFileSpecList &comp_unit_list);
639 const SBFileSpecList &module_list,
640 const SBFileSpecList &comp_unit_list);
647 const SBFileSpecList &module_list, const SBFileSpecList
[all...]
H A DSBFileSpecList.h17 class LLDB_API SBFileSpecList {
19 SBFileSpecList();
21 SBFileSpecList(const lldb::SBFileSpecList &rhs);
23 ~SBFileSpecList();
25 const SBFileSpecList &operator=(const lldb::SBFileSpecList &rhs);
H A DSBFileSpec.h68 friend class SBFileSpecList; variable
H A DSBStream.h82 friend class SBFileSpecList; variable
H A DSBDefines.h76 class LLDB_API SBFileSpecList;
75 class LLDB_API SBFileSpecList; global() variable
/llvm-project/lldb/test/API/functionalities/breakpoint/source_regexp/
H A DTestSourceRegexBreakpoints.py30 target_files = lldb.SBFileSpecList()
38 source_regex, lldb.SBFileSpecList(), target_files, func_names
69 target_files = lldb.SBFileSpecList()
73 source_regex, lldb.SBFileSpecList(), target_files, lldb.SBStringList()
85 source_regex, lldb.SBFileSpecList(), target_files, lldb.SBStringList()
99 source_regex, lldb.SBFileSpecList(), target_files, func_names
/llvm-project/lldb/test/API/functionalities/breakpoint/objc/
H A DTestObjCBreakpoints.py35 lldb.SBFileSpecList(),
36 lldb.SBFileSpecList(),
97 lldb.SBFileSpecList(),
98 lldb.SBFileSpecList(),
127 lldb.SBFileSpecList(),
128 lldb.SBFileSpecList(),
/llvm-project/lldb/test/API/functionalities/breakpoint/serialize/
H A DTestBreakpointSerialization.py217 empty_module_list = lldb.SBFileSpecList()
218 empty_cu_list = lldb.SBFileSpecList()
252 module_list = lldb.SBFileSpecList()
256 cu_list = lldb.SBFileSpecList()
296 empty_module_list = lldb.SBFileSpecList()
297 empty_cu_list = lldb.SBFileSpecList()
307 lldb.SBFileSpec("blubby.c"), 666, 333, 0, lldb.SBFileSpecList()
359 empty_module_list = lldb.SBFileSpecList()
360 empty_cu_list = lldb.SBFileSpecList()
372 lldb.SBFileSpec("blubby.c"), 666, 333, 0, lldb.SBFileSpecList()
[all …]
/llvm-project/lldb/test/API/lang/cpp/namespace/
H A DTestNamespace.py25 module_list = lldb.SBFileSpecList()
27 cu_list = lldb.SBFileSpecList()
53 module_list = lldb.SBFileSpecList()
55 cu_list = lldb.SBFileSpecList()
81 module_list = lldb.SBFileSpecList()
83 cu_list = lldb.SBFileSpecList()
/llvm-project/lldb/bindings/interface/
H A DSBFileSpecListExtensions.i1 STRING_EXTENSION_OUTSIDE(SBFileSpecList)
3 %extend lldb::SBFileSpecList {
H A DSBFileSpecListDocstrings.i3 ) lldb::SBFileSpecList;
/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_command/
H A DTestBreakpointCommandsFromPython.py57 file_list = lldb.SBFileSpecList()
59 module_list = lldb.SBFileSpecList()
75 "Set a breakpoint here", lldb.SBFileSpecList(), lldb.SBFileSpecList()
/llvm-project/lldb/test/API/lang/cpp/breakpoint-commands/
H A DTestCPPBreakpointCommands.py37 self.a_out_module = lldb.SBFileSpecList()
40 self.nested_comp_unit = lldb.SBFileSpecList()
/llvm-project/lldb/test/API/functionalities/breakpoint/scripted_bkpt/
H A DTestScriptedResolver.py82 file_list = lldb.SBFileSpecList()
83 module_list = lldb.SBFileSpecList()
224 file_list = lldb.SBFileSpecList()
225 module_list = lldb.SBFileSpecList()
/llvm-project/lldb/test/API/functionalities/breakpoint/break_in_loaded_dylib/
H A DTestBreakInLoadedDylib.py56 files_list = lldb.SBFileSpecList()
61 modules_list = lldb.SBFileSpecList()
/llvm-project/lldb/examples/functions/
H A Dmain.cpp184 SBFileSpecList comp_unit_list; in main()
199 SBFileSpecList module_list; in main()
/llvm-project/lldb/examples/python/
H A Dperformance.py116 self.modules = lldb.SBFileSpecList()
117 self.files = lldb.SBFileSpecList()
133 self.files = lldb.SBFileSpecList()
/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_by_line_and_column/
H A DTestBreakpointByLineAndColumn.py73 module_list = lldb.SBFileSpecList()
/llvm-project/llvm/utils/gn/secondary/lldb/source/API/
H A DBUILD.gn68 "SBFileSpecList.cpp",
/llvm-project/lldb/bindings/
H A Dheaders.swig35 #include "lldb/API/SBFileSpecList.h"
/llvm-project/lldb/tools/lldb-dap/
H A DSourceBreakpoint.cpp14 #include "lldb/API/SBFileSpecList.h" in SourceBreakpoint()
34 lldb::SBFileSpecList module_list; in UpdateBreakpoint()

12