Home
last modified time | relevance | path

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

123

/freebsd/contrib/llvm-project/lldb/bindings/interface/
H A DSBTargetDocstrings.i4 SBTarget supports module, breakpoint, and watchpoint iterations. For example, ::
38 ) lldb::SBTarget;
48 ) lldb::SBTarget::GetPlatform;
63 ) lldb::SBTarget::Install;
79 (SBTarget::GetDebugger()) will listen to all process events.
134 ) lldb::SBTarget::Launch;
154 ) lldb::SBTarget::LaunchSimple;
174 ) lldb::SBTarget::LoadCore;
183 (SBTarget::GetDebugger()) will listen to all process events.
193 ) lldb::SBTarget
[all...]
H A DSBAddressRangeExtensions.i7 self.GetDescription(stream, lldb.target if lldb.target else lldb.SBTarget())
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBTarget.cpp98 SBTarget::SBTarget() { LLDB_INSTRUMENT_VA(this); } in SBTarget() function in SBTarget
100 SBTarget::SBTarget(const SBTarget &rhs) : m_opaque_sp(rhs.m_opaque_sp) { in SBTarget() function in SBTarget
104 SBTarget::SBTarget(const TargetSP &target_sp) : m_opaque_sp(target_sp) { in SBTarget() function in SBTarget
108 const SBTarget &SBTarget::operator=(const SBTarget &rhs) { in operator =()
117 SBTarget::~SBTarget() = default;
119 bool SBTarget::EventIsTargetEvent(const SBEvent &event) { in EventIsTargetEvent()
125 SBTarget SBTarget::GetTargetFromEvent(const SBEvent &event) { in GetTargetFromEvent()
131 uint32_t SBTarget::GetNumModulesFromEvent(const SBEvent &event) { in GetNumModulesFromEvent()
139 SBModule SBTarget::GetModuleAtIndexFromEvent(const uint32_t idx, in GetModuleAtIndexFromEvent()
148 const char *SBTarget::GetBroadcasterClassName() { in GetBroadcasterClassName()
[all …]
H A DSBDebugger.cpp782 lldb::SBTarget SBDebugger::CreateTarget(const char *filename, in CreateTarget()
790 SBTarget sb_target; in CreateTarget()
820 SBTarget
825 SBTarget sb_target; in CreateTargetWithFileAndTargetTriple()
846 SBTarget SBDebugger::CreateTargetWithFileAndArch(const char *filename, in CreateTargetWithFileAndArch()
852 SBTarget sb_target; in CreateTargetWithFileAndArch()
891 SBTarget SBDebugger::CreateTarget(const char *filename) { in CreateTarget()
894 SBTarget sb_target; in CreateTarget()
915 SBTarget SBDebugger::GetDummyTarget() { in GetDummyTarget()
918 SBTarget sb_target; in GetDummyTarget()
[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()
H A DSBInstruction.cpp109 const char *SBInstruction::GetMnemonic(SBTarget target) { in GetMnemonic()
128 const char *SBInstruction::GetOperands(SBTarget target) { in GetOperands()
147 const char *SBInstruction::GetComment(SBTarget target) { in GetComment()
166 lldb::InstructionControlFlowKind SBInstruction::GetControlFlowKind(lldb::SBTarget target) { in GetControlFlowKind()
194 SBData SBInstruction::GetData(SBTarget target) { in GetData()
H A DSBAddress.cpp43 SBAddress::SBAddress(lldb::addr_t load_addr, lldb::SBTarget &target) in SBAddress()
107 lldb::addr_t SBAddress::GetLoadAddress(const SBTarget &target) const { in GetLoadAddress()
122 void SBAddress::SetLoadAddress(lldb::addr_t load_addr, lldb::SBTarget &target) { in SetLoadAddress()
H A DSBSymbol.cpp107 SBInstructionList SBSymbol::GetInstructions(SBTarget target) { in GetInstructions()
113 SBInstructionList SBSymbol::GetInstructions(SBTarget target, in GetInstructions()
H A DSBFunction.cpp109 SBInstructionList SBFunction::GetInstructions(SBTarget target) { in GetInstructions()
115 SBInstructionList SBFunction::GetInstructions(SBTarget target, in GetInstructions()
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBDebugger.h318 lldb::SBTarget CreateTarget(const char *filename, const char *target_triple,
323 lldb::SBTarget CreateTargetWithFileAndTargetTriple(const char *filename,
327 lldb::SBTarget CreateTargetWithFileAndArch(const char *filename,
331 lldb::SBTarget CreateTarget(const char *filename);
336 lldb::SBTarget GetDummyTarget();
347 bool DeleteTarget(lldb::SBTarget &target);
350 lldb::SBTarget GetTargetAtIndex(uint32_t idx);
353 uint32_t GetIndexOfTarget(lldb::SBTarget target);
356 lldb::SBTarget FindTargetWithProcessID(lldb::pid_t pid);
359 lldb::SBTarget FindTargetWithFileAndArch(const char *filename,
[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::InstructionControlFlowKind GetControlFlowKind(lldb::SBTarget target);
48 lldb::SBData GetData(lldb::SBTarget target);
H A DSBTarget.h37 class LLDB_API SBTarget {
50 SBTarget();
52 SBTarget(const lldb::SBTarget &rhs);
55 ~SBTarget();
57 const lldb::SBTarget &operator=(const lldb::SBTarget &rhs);
65 static lldb::SBTarget GetTargetFromEvent(const lldb::SBEvent &event);
926 bool operator==(const lldb::SBTarget &rhs) const;
928 bool operator!=(const lldb::SBTarget &rhs) const;
991 SBTarget(const lldb::TargetSP &target_sp);
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);
101 friend class SBTarget; variable
H A DSBBreakpoint.h50 lldb::SBTarget GetTarget() const;
166 friend class SBTarget; variable
180 SBBreakpointList(SBTarget &target);
199 friend class SBTarget;
H A DSBModule.h186 lldb::SBValueList FindGlobalVariables(lldb::SBTarget &target,
200 lldb::SBValue FindFirstGlobalVariable(lldb::SBTarget &target,
305 friend class SBTarget; variable
H A DSBExecutionContext.h35 SBExecutionContext(const lldb::SBTarget &target);
49 SBTarget GetTarget() const;
H A DSBSymbol.h39 lldb::SBInstructionList GetInstructions(lldb::SBTarget target);
41 lldb::SBInstructionList GetInstructions(lldb::SBTarget target,
H A DSBFunction.h39 lldb::SBInstructionList GetInstructions(lldb::SBTarget target);
41 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.h20 class SBTarget; variable
30 /// This function implies that a future call to SBTarget::Attach(...)
43 /// Future calls to SBTarget::Attach(...) will be synchronous or
54 /// If \b false, then the SBTarget::Attach(...) call will be a
57 /// If \b true, then the SBTarget::Attach(...) function will
84 /// This function implies that a call to SBTarget::Attach(...) will
95 /// Future calls to SBTarget::Attach(...) will be synchronous or
103 /// If \b false, then the SBTarget::Attach(...) call will be a
106 /// If \b true, then the SBTarget::Attach(...) function will
166 /// By default the SBDebugger, which has a listener, that the SBTarget
[all...]
H A DSBBreakpointName.h22 SBBreakpointName(SBTarget &target, const char *name);
110 friend class SBTarget;
H A DSBLaunchInfo.h22 class SBTarget; variable
211 friend class SBTarget; variable
H A DSBType.h129 lldb::SBValue GetConstantValue(lldb::SBTarget target);
229 lldb::SBValue GetTemplateArgumentValue(lldb::SBTarget target, uint32_t idx);
279 friend class SBTarget; variable
H A DSBMutex.h38 friend class SBTarget; variable
/freebsd/contrib/llvm-project/lldb/bindings/python/
H A Dpython.swig15 * :py:class:`SBTarget`: Represents the target program running under the debugger.
23 files. :py:class:`SBTarget` contains SBModule.
25 :py:class:`SBTarget` contains SBBreakpoints.

123