Home
last modified time | relevance | path

Searched refs:SBTarget (Results 1 – 25 of 116) sorted by relevance

12345

/llvm-project-15.0.7/lldb/source/API/
H A DSBTarget.cpp96 SBTarget::SBTarget() { LLDB_INSTRUMENT_VA(this); } in SBTarget() function in SBTarget
98 SBTarget::SBTarget(const SBTarget &rhs) : m_opaque_sp(rhs.m_opaque_sp) { in SBTarget() function in SBTarget
102 SBTarget::SBTarget(const TargetSP &target_sp) : m_opaque_sp(target_sp) { in SBTarget() function in SBTarget
106 const SBTarget &SBTarget::operator=(const SBTarget &rhs) { in operator =()
115 SBTarget::~SBTarget() = default;
123 SBTarget SBTarget::GetTargetFromEvent(const SBEvent &event) { in GetTargetFromEvent()
152 bool SBTarget::IsValid() const { in IsValid()
286 SBError SBTarget::Install() { in Install()
564 bool SBTarget::operator==(const SBTarget &rhs) const { in operator ==()
570 bool SBTarget::operator!=(const SBTarget &rhs) const { in operator !=()
[all …]
H A DSBDebugger.cpp778 SBTarget sb_target; in CreateTarget()
808 SBTarget
813 SBTarget sb_target; in CreateTargetWithFileAndTargetTriple()
840 SBTarget sb_target; in CreateTargetWithFileAndArch()
881 SBTarget sb_target; in CreateTarget()
905 SBTarget sb_target; in GetDummyTarget()
941 SBTarget sb_target; in GetTargetAtIndex()
965 SBTarget sb_target; in FindTargetWithProcessID()
977 SBTarget sb_target; in FindTargetWithFileAndArch()
991 SBTarget sb_target; in FindTargetWithLLDBProcess()
[all …]
H A DSBExecutionContext.cpp35 SBExecutionContext::SBExecutionContext(const lldb::SBTarget &target) in SBExecutionContext()
77 SBTarget SBExecutionContext::GetTarget() const { in GetTarget()
80 SBTarget sb_target; in GetTarget()
/llvm-project-15.0.7/lldb/test/API/api/listeners/
H A DTestListener.py25 lldb.SBTarget.GetBroadcasterClassName(),
26 lldb.SBTarget.eBroadcastBitBreakpointChanged)
29 lldb.SBTarget.GetBroadcasterClassName(),
30 lldb.SBTarget.eBroadcastBitWatchpointChanged)
33 lldb.SBTarget.GetBroadcasterClassName(),
34 lldb.SBTarget.eBroadcastBitModulesUnloaded)
54 lldb.SBTarget.GetBroadcasterClassName(),
55 lldb.SBTarget.eBroadcastBitBreakpointChanged)
77 lldb.SBTarget.GetBroadcasterClassName(),
78 lldb.SBTarget.eBroadcastBitBreakpointChanged)
[all …]
/llvm-project-15.0.7/lldb/test/API/functionalities/target-new-solib-notifications/
H A DTestModuleLoadedNotifys.py37 lldb.SBTarget.GetBroadcasterClassName(),
38 lldb.SBTarget.eBroadcastBitModulesLoaded | lldb.SBTarget.eBroadcastBitModulesUnloaded)
75 if lldb.SBTarget.EventIsTargetEvent(event):
76 if event.GetType() == lldb.SBTarget.eBroadcastBitModulesLoaded:
77 solib_count = lldb.SBTarget.GetNumModulesFromEvent(event)
82 module = lldb.SBTarget.GetModuleAtIndexFromEvent(i, event)
95 if event.GetType() == lldb.SBTarget.eBroadcastBitModulesUnloaded:
96 solib_count = lldb.SBTarget.GetNumModulesFromEvent(event)
104 module = lldb.SBTarget.GetModuleAtIndexFromEvent(i, event)
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBDebugger.h185 lldb::SBTarget CreateTargetWithFileAndArch(const char *filename,
188 lldb::SBTarget CreateTarget(const char *filename);
190 lldb::SBTarget GetDummyTarget();
193 bool DeleteTarget(lldb::SBTarget &target);
195 lldb::SBTarget GetTargetAtIndex(uint32_t idx);
197 uint32_t GetIndexOfTarget(lldb::SBTarget target);
199 lldb::SBTarget FindTargetWithProcessID(pid_t pid);
201 lldb::SBTarget FindTargetWithFileAndArch(const char *filename,
206 lldb::SBTarget GetSelectedTarget();
208 void SetSelectedTarget(SBTarget &target);
[all …]
H A DSBInstruction.h40 const char *GetMnemonic(lldb::SBTarget target);
42 const char *GetOperands(lldb::SBTarget target);
44 const char *GetComment(lldb::SBTarget target);
46 lldb::SBData GetData(lldb::SBTarget target);
H A DSBTarget.h29 class LLDB_API SBTarget {
41 SBTarget();
43 SBTarget(const lldb::SBTarget &rhs);
45 SBTarget(const lldb::TargetSP &target_sp);
48 ~SBTarget();
50 const lldb::SBTarget &operator=(const lldb::SBTarget &rhs);
58 static lldb::SBTarget GetTargetFromEvent(const lldb::SBEvent &event);
830 bool operator==(const lldb::SBTarget &rhs) const;
832 bool operator!=(const lldb::SBTarget &rhs) const;
H A DSBAddress.h26 SBAddress(lldb::addr_t load_addr, lldb::SBTarget &target);
44 addr_t GetLoadAddress(const lldb::SBTarget &target) const;
48 void SetLoadAddress(lldb::addr_t load_addr, lldb::SBTarget &target);
100 friend class SBTarget; variable
H A DSBBreakpoint.h45 lldb::SBTarget GetTarget() const;
152 friend class SBTarget; variable
161 SBBreakpointList(SBTarget &target);
180 friend class SBTarget;
H A DSBExecutionContext.h30 SBExecutionContext(const lldb::SBTarget &target);
44 SBTarget GetTarget() const;
H A DSBModule.h186 lldb::SBValueList FindGlobalVariables(lldb::SBTarget &target,
200 lldb::SBValue FindFirstGlobalVariable(lldb::SBTarget &target,
304 friend class SBTarget; variable
H A DSBSymbol.h39 lldb::SBInstructionList GetInstructions(lldb::SBTarget target);
41 lldb::SBInstructionList GetInstructions(lldb::SBTarget target,
H A DSBFunction.h38 lldb::SBInstructionList GetInstructions(lldb::SBTarget target);
40 lldb::SBInstructionList GetInstructions(lldb::SBTarget target,
H A DSBSection.h43 lldb::addr_t GetLoadAddress(lldb::SBTarget &target);
94 friend class SBTarget; variable
H A DSBAttachInfo.h16 class SBTarget; variable
168 friend class SBTarget;
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBDebugger.i279 lldb::SBTarget
286 lldb::SBTarget
290 lldb::SBTarget
294 lldb::SBTarget
300 lldb::SBTarget GetDummyTarget();
306 DeleteTarget (lldb::SBTarget &target);
308 lldb::SBTarget
312 GetIndexOfTarget (lldb::SBTarget target);
314 lldb::SBTarget
317 lldb::SBTarget
[all …]
H A DSBInstruction.i39 GetMnemonic (lldb::SBTarget target);
42 GetOperands (lldb::SBTarget target);
45 GetComment (lldb::SBTarget target);
48 GetData (lldb::SBTarget target);
H A DSBTarget.i48 ) SBTarget;
49 class SBTarget
67 SBTarget ();
69 SBTarget (const lldb::SBTarget& rhs);
74 ~SBTarget();
87 static lldb::SBTarget
970 operator == (const lldb::SBTarget &rhs) const;
973 operator != (const lldb::SBTarget &rhs) const;
981 STRING_EXTENSION_LEVEL(SBTarget, lldb::eDescriptionLevelBrief)
H A DSBExecutionContext.i21 SBExecutionContext (const lldb::SBTarget &target);
31 SBTarget
H A DSBAddress.i58 SBAddress (lldb::addr_t load_addr, lldb::SBTarget &target);
85 GetLoadAddress (const lldb::SBTarget &target) const;
89 lldb::SBTarget &target);
H A DSBSymbol.i41 GetInstructions (lldb::SBTarget target);
44 GetInstructions (lldb::SBTarget target, const char *flavor_string);
/llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/
H A Dsb_address.py11 obj.GetLoadAddress(lldb.SBTarget())
12 obj.SetLoadAddress(0xffff, lldb.SBTarget())
/llvm-project-15.0.7/lldb/test/API/commands/watchpoints/watchpoint_events/
H A DTestWatchpointEvents.py54 self.listener, lldb.SBTarget.eBroadcastBitWatchpointChanged)
56 self.target_bcast, lldb.SBTarget.eBroadcastBitWatchpointChanged)
100 self.target_bcast, lldb.SBTarget.eBroadcastBitBreakpointChanged, event)
/llvm-project-15.0.7/lldb/utils/lui/
H A Ddebuggerdriver.py35 lldb.SBTarget.GetBroadcasterClassName(),
36 lldb.SBTarget.eBroadcastBitBreakpointChanged
39 | lldb.SBTarget.eBroadcastBitWatchpointChanged

12345