/freebsd/contrib/llvm-project/lldb/bindings/interface/ |
H A D | SBTargetDocstrings.i | 4 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 D | SBAddressRangeExtensions.i | 7 self.GetDescription(stream, lldb.target if lldb.target else lldb.SBTarget())
|
/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBTarget.cpp | 97 SBTarget::SBTarget() { LLDB_INSTRUMENT_VA(this); } in SBTarget() function in SBTarget 99 SBTarget::SBTarget(const SBTarget &rhs) : m_opaque_sp(rhs.m_opaque_sp) { in SBTarget() function in SBTarget 103 SBTarget::SBTarget(const TargetSP &target_sp) : m_opaque_sp(target_sp) { in SBTarget() function in SBTarget 107 const SBTarget &SBTarget::operator=(const SBTarget &rhs) { in operator =() 116 SBTarget::~SBTarget() = default; 118 bool SBTarget::EventIsTargetEvent(const SBEvent &event) { in EventIsTargetEvent() 124 SBTarget SBTarget::GetTargetFromEvent(const SBEvent &event) { in GetTargetFromEvent() 130 uint32_t SBTarget::GetNumModulesFromEvent(const SBEvent &event) { in GetNumModulesFromEvent() 138 SBModule SBTarget::GetModuleAtIndexFromEvent(const uint32_t idx, in GetModuleAtIndexFromEvent() 147 const char *SBTarget::GetBroadcasterClassName() { in GetBroadcasterClassName() [all …]
|
H A D | SBDebugger.cpp | 822 lldb::SBTarget SBDebugger::CreateTarget(const char *filename, in CreateTarget() 830 SBTarget sb_target; in CreateTarget() 860 SBTarget 865 SBTarget sb_target; in CreateTargetWithFileAndTargetTriple() 886 SBTarget SBDebugger::CreateTargetWithFileAndArch(const char *filename, in CreateTargetWithFileAndArch() 892 SBTarget sb_target; in CreateTargetWithFileAndArch() 930 SBTarget SBDebugger::CreateTarget(const char *filename) { in CreateTarget() 933 SBTarget sb_target; in CreateTarget() 954 SBTarget SBDebugger::GetDummyTarget() { in GetDummyTarget() 957 SBTarget sb_target; in GetDummyTarget() [all …]
|
H A D | SBExecutionContext.cpp | 35 SBExecutionContext::SBExecutionContext(const lldb::SBTarget &target) in SBExecutionContext() 77 SBTarget SBExecutionContext::GetTarget() const { in GetTarget() 80 SBTarget sb_target; in GetTarget()
|
H A D | SBInstruction.cpp | 18 #include "lldb/API/SBTarget.h" 110 const char *SBInstruction::GetMnemonic(SBTarget target) { in GetMnemonic() 129 const char *SBInstruction::GetOperands(SBTarget target) { in GetOperands() 148 const char *SBInstruction::GetComment(SBTarget target) { in GetComment() 167 lldb::InstructionControlFlowKind SBInstruction::GetControlFlowKind(lldb::SBTarget target) { in GetControlFlowKind() 195 SBData SBInstruction::GetData(SBTarget target) { in GetData()
|
H A D | SBAddress.cpp | 43 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 D | SBSymbol.cpp | 107 SBInstructionList SBSymbol::GetInstructions(SBTarget target) { in GetInstructions() 113 SBInstructionList SBSymbol::GetInstructions(SBTarget target, in GetInstructions()
|
H A D | SBFunction.cpp | 108 SBInstructionList SBFunction::GetInstructions(SBTarget target) { in GetInstructions() 114 SBInstructionList SBFunction::GetInstructions(SBTarget target, in GetInstructions()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/API/ |
H A D | SBDebugger.h | 234 lldb::SBTarget CreateTarget(const char *filename, const char *target_triple, 238 lldb::SBTarget CreateTargetWithFileAndTargetTriple(const char *filename, 241 lldb::SBTarget CreateTargetWithFileAndArch(const char *filename, 244 lldb::SBTarget CreateTarget(const char *filename); 246 lldb::SBTarget GetDummyTarget(); 249 bool DeleteTarget(lldb::SBTarget &target); 251 lldb::SBTarget GetTargetAtIndex(uint32_t idx); 253 uint32_t GetIndexOfTarget(lldb::SBTarget target); 255 lldb::SBTarget FindTargetWithProcessID(lldb::pid_t pid); 257 lldb::SBTarget FindTargetWithFileAndArch(const char *filename, [all …]
|
H A D | SBInstruction.h | 40 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 D | SBTarget.h | 37 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); 909 bool operator==(const lldb::SBTarget &rhs) const; 911 bool operator!=(const lldb::SBTarget &rhs) const; 971 SBTarget(const lldb::TargetSP &target_sp);
|
H A D | SBAddress.h | 26 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 D | SBBreakpoint.h | 50 lldb::SBTarget GetTarget() const; 161 friend class SBTarget; 175 SBBreakpointList(SBTarget &target); 194 friend class SBTarget; 159 friend class SBTarget; global() variable
|
H A D | SBModule.h | 186 lldb::SBValueList FindGlobalVariables(lldb::SBTarget &target, 200 lldb::SBValue FindFirstGlobalVariable(lldb::SBTarget &target, 304 friend class SBTarget; variable
|
H A D | SBExecutionContext.h | 34 SBExecutionContext(const lldb::SBTarget &target); 48 SBTarget GetTarget() const;
|
H A D | SBSymbol.h | 39 lldb::SBInstructionList GetInstructions(lldb::SBTarget target); 41 lldb::SBInstructionList GetInstructions(lldb::SBTarget target,
|
H A D | SBFunction.h | 39 lldb::SBInstructionList GetInstructions(lldb::SBTarget target); 41 lldb::SBInstructionList GetInstructions(lldb::SBTarget target,
|
H A D | SBSection.h | 43 lldb::addr_t GetLoadAddress(lldb::SBTarget &target); 94 friend class SBTarget; variable
|
H A D | SBAttachInfo.h | 20 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 D | SBBreakpointName.h | 26 SBBreakpointName(SBTarget &target, const char *name); 114 friend class SBTarget;
|
H A D | SBLaunchInfo.h | 22 class SBTarget; variable 211 friend class SBTarget; variable
|
H A D | SBStatisticsOptions.h | 74 friend class SBTarget;
|
/freebsd/contrib/llvm-project/lldb/bindings/python/ |
H A D | python.swig | 15 * :py:class:`SBTarget`: Represents the target program running under the debugger. 23 files. :py:class:`SBTarget` contains SBModule. 25 :py:class:`SBTarget` contains SBBreakpoints.
|
/freebsd/lib/clang/liblldb/ |
H A D | LLDBWrapLua.cpp | 3636 SWIGINTERN std::string lldb_SBTarget___repr__(lldb::SBTarget *self){ in lldb_SBTarget___repr__() 4224 lldb::SBTarget *arg2 = 0 ; in _wrap_new_SBAddress__SWIG_3() 4395 lldb::SBTarget *arg2 = 0 ; in _wrap_SBAddress_GetLoadAddress() 4411 …result = (lldb::addr_t)((lldb::SBAddress const *)arg1)->GetLoadAddress((lldb::SBTarget const &)*ar… in _wrap_SBAddress_GetLoadAddress() 4462 lldb::SBTarget *arg3 = 0 ; in _wrap_SBAddress_SetLoadAddress() 5138 lldb::SBTarget arg3 ; in _wrap_SBAddressRange_GetDescription() 5139 lldb::SBTarget *argp3 ; in _wrap_SBAddressRange_GetDescription() 5507 lldb::SBTarget *arg3 = 0 ; in _wrap_SBAddressRangeList_GetDescription() 5529 result = (bool)(arg1)->GetDescription(*arg2,(lldb::SBTarget const &)*arg3); in _wrap_SBAddressRangeList_GetDescription() 7405 lldb::SBTarget *arg2 = 0 ; in _wrap_SBBlock_GetVariables__SWIG_1() [all …]
|