Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/API/
DSBFileSpecList.cpp24 SBFileSpecList::SBFileSpecList() : m_opaque_up(new FileSpecList()) { in SBFileSpecList() function in SBFileSpecList
25 LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBFileSpecList); in SBFileSpecList()
28 SBFileSpecList::SBFileSpecList(const SBFileSpecList &rhs) : m_opaque_up() { in SBFileSpecList() function in SBFileSpecList
29 LLDB_RECORD_CONSTRUCTOR(SBFileSpecList, (const lldb::SBFileSpecList &), rhs); in SBFileSpecList()
35 SBFileSpecList::~SBFileSpecList() = default;
37 const SBFileSpecList &SBFileSpecList::operator=(const SBFileSpecList &rhs) { in operator =()
38 LLDB_RECORD_METHOD(const lldb::SBFileSpecList &, in operator =()
39 SBFileSpecList, operator=,(const lldb::SBFileSpecList &), in operator =()
47 uint32_t SBFileSpecList::GetSize() const { in GetSize()
48 LLDB_RECORD_METHOD_CONST_NO_ARGS(uint32_t, SBFileSpecList, GetSize); in GetSize()
[all …]
DSBTarget.cpp742 SBFileSpecList empty_list; in BreakpointCreateByLocation()
750 SBFileSpecList &sb_module_list) { in BreakpointCreateByLocation()
753 lldb::SBFileSpecList &), in BreakpointCreateByLocation()
762 lldb::addr_t offset, SBFileSpecList &sb_module_list) { in BreakpointCreateByLocation()
765 lldb::addr_t, lldb::SBFileSpecList &), in BreakpointCreateByLocation()
822 const SBFileSpecList &module_list, in BreakpointCreateByName()
823 const SBFileSpecList &comp_unit_list) { in BreakpointCreateByName()
825 (const char *, const lldb::SBFileSpecList &, in BreakpointCreateByName()
826 const lldb::SBFileSpecList &), in BreakpointCreateByName()
837 const SBFileSpecList &module_list, const SBFileSpecList &comp_unit_list) { in BreakpointCreateByName()
[all …]
DSBReproducer.cpp85 RegisterMethods<SBFileSpecList>(R); in SBRegistry()
DCMakeLists.txt46 SBFileSpecList.cpp
/external/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_language/
DTestBreakpointLanguage.py39 lldb.SBFileSpecList(),
40 lldb.SBFileSpecList())
49 lldb.SBFileSpecList(),
50 lldb.SBFileSpecList())
59 lldb.SBFileSpecList(),
60 lldb.SBFileSpecList())
81 lldb.SBFileSpecList(),
82 lldb.SBFileSpecList())
92 lldb.SBFileSpecList(),
93 lldb.SBFileSpecList())
[all …]
/external/llvm-project/lldb/include/lldb/API/
DSBFileSpecList.h17 class LLDB_API SBFileSpecList {
19 SBFileSpecList();
21 SBFileSpecList(const lldb::SBFileSpecList &rhs);
23 ~SBFileSpecList();
25 const SBFileSpecList &operator=(const lldb::SBFileSpecList &rhs);
DSBTarget.h556 lldb::addr_t offset, SBFileSpecList &module_list);
561 SBFileSpecList &module_list);
569 const SBFileSpecList &module_list,
570 const SBFileSpecList &comp_unit_list);
576 const SBFileSpecList &module_list,
577 const SBFileSpecList &comp_unit_list);
584 const SBFileSpecList &module_list, const SBFileSpecList &comp_unit_list);
590 const SBFileSpecList &module_list,
591 const SBFileSpecList &comp_unit_list);
598 const SBFileSpecList &module_list, const SBFileSpecList &comp_unit_list);
[all …]
DSBFileSpec.h65 friend class SBFileSpecList; variable
DSBStream.h70 friend class SBFileSpecList; variable
DSBDefines.h47 class LLDB_API SBFileSpecList; variable
/external/llvm-project/lldb/bindings/interface/
DSBFileSpecList.i11 class SBFileSpecList
14 SBFileSpecList ();
16 SBFileSpecList (const lldb::SBFileSpecList &rhs);
18 ~SBFileSpecList ();
DSBTarget.i575 lldb::addr_t offset, SBFileSpecList &module_list);
580 SBFileSpecList &module_list);
588 const SBFileSpecList &module_list,
589 const SBFileSpecList &comp_unit_list);
595 const SBFileSpecList &module_list,
596 const SBFileSpecList &comp_unit_list);
631 const SBFileSpecList &module_list,
632 const SBFileSpecList &comp_unit_list);
639 const SBFileSpecList &module_list,
640 const SBFileSpecList &comp_unit_list);
[all …]
/external/llvm-project/lldb/test/API/functionalities/breakpoint/source_regexp/
DTestSourceRegexBreakpoints.py33 target_files = lldb.SBFileSpecList()
41 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())
97 source_regex, lldb.SBFileSpecList(), target_files, func_names)
/external/llvm-project/lldb/test/API/functionalities/breakpoint/objc/
DTestObjCBreakpoints.py39 lldb.SBFileSpecList(),
40 lldb.SBFileSpecList())
87 lldb.SBFileSpecList(),
88 lldb.SBFileSpecList())
110 lldb.SBFileSpecList(),
111 lldb.SBFileSpecList())
/external/llvm-project/lldb/test/API/functionalities/breakpoint/serialize/
DTestBreakpointSerialization.py163 empty_module_list = lldb.SBFileSpecList()
164 empty_cu_list = lldb.SBFileSpecList()
184 module_list = lldb.SBFileSpecList()
188 cu_list = lldb.SBFileSpecList()
218 empty_module_list = lldb.SBFileSpecList()
219 empty_cu_list = lldb.SBFileSpecList()
227 lldb.SBFileSpec("blubby.c"), 666, 333, 0, lldb.SBFileSpecList())
268 empty_module_list = lldb.SBFileSpecList()
269 empty_cu_list = lldb.SBFileSpecList()
279 lldb.SBFileSpec("blubby.c"), 666, 333, 0, lldb.SBFileSpecList())
[all …]
/external/llvm-project/lldb/test/API/lang/cpp/namespace/
DTestNamespace.py34 module_list = lldb.SBFileSpecList()
36 cu_list = lldb.SBFileSpecList()
59 module_list = lldb.SBFileSpecList()
61 cu_list = lldb.SBFileSpecList()
84 module_list = lldb.SBFileSpecList()
86 cu_list = lldb.SBFileSpecList()
/external/llvm-project/lldb/test/API/lang/cpp/breakpoint-commands/
DTestCPPBreakpointCommands.py42 self.a_out_module = lldb.SBFileSpecList()
45 self.nested_comp_unit = lldb.SBFileSpecList()
/external/llvm-project/lldb/test/API/functionalities/breakpoint/scripted_bkpt/
DTestScriptedResolver.py84 file_list = lldb.SBFileSpecList()
85 module_list = lldb.SBFileSpecList()
174 file_list = lldb.SBFileSpecList()
175 module_list = lldb.SBFileSpecList()
/external/llvm-project/lldb/examples/functions/
Dmain.cpp184 SBFileSpecList comp_unit_list; in main()
199 SBFileSpecList module_list; in main()
/external/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_command/
DTestBreakpointCommandsFromPython.py68 "Set a breakpoint here", lldb.SBFileSpecList(), lldb.SBFileSpecList())
/external/llvm-project/lldb/examples/python/
Dperformance.py113 self.modules = lldb.SBFileSpecList()
114 self.files = lldb.SBFileSpecList()
131 self.files = lldb.SBFileSpecList()
/external/llvm-project/lldb/bindings/
Dheaders.swig32 #include "lldb/API/SBFileSpecList.h"
Dinterfaces.swig39 %include "./interface/SBFileSpecList.i"
/external/llvm-project/lldb/packages/Python/lldbsuite/test/
Dlldbutil.py971 source_spec, line_number, column, 0, lldb.SBFileSpecList())