Home
last modified time | relevance | path

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

1234

/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A DSBTarget.cpp100 SBTarget::SBTarget() : m_opaque_sp() { in SBTarget() function in SBTarget
104 SBTarget::SBTarget(const SBTarget &rhs) : m_opaque_sp(rhs.m_opaque_sp) { in SBTarget() function in SBTarget
105 LLDB_RECORD_CONSTRUCTOR(SBTarget, (const lldb::SBTarget &), rhs); in SBTarget()
108 SBTarget::SBTarget(const TargetSP &target_sp) : m_opaque_sp(target_sp) { in SBTarget() function in SBTarget
112 const SBTarget &SBTarget::operator=(const SBTarget &rhs) { in operator =()
114 SBTarget, operator=,(const lldb::SBTarget &), rhs); in operator =()
122 SBTarget::~SBTarget() = default;
131 SBTarget SBTarget::GetTargetFromEvent(const SBEvent &event) { in GetTargetFromEvent()
603 bool SBTarget::operator==(const SBTarget &rhs) const { in operator ==()
610 bool SBTarget::operator!=(const SBTarget &rhs) const { in operator !=()
[all …]
H A DSBExecutionContext.cpp39 SBExecutionContext::SBExecutionContext(const lldb::SBTarget &target) in SBExecutionContext()
41 LLDB_RECORD_CONSTRUCTOR(SBExecutionContext, (const lldb::SBTarget &), target); in SBExecutionContext()
84 SBTarget SBExecutionContext::GetTarget() const { in GetTarget()
85 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBTarget, SBExecutionContext, in GetTarget()
88 SBTarget sb_target; in GetTarget()
145 LLDB_REGISTER_CONSTRUCTOR(SBExecutionContext, (const lldb::SBTarget &)); in RegisterMethods()
152 LLDB_REGISTER_METHOD_CONST(lldb::SBTarget, SBExecutionContext, GetTarget, in RegisterMethods()
H A DSBInstruction.cpp114 const char *SBInstruction::GetMnemonic(SBTarget target) { in GetMnemonic()
115 LLDB_RECORD_METHOD(const char *, SBInstruction, GetMnemonic, (lldb::SBTarget), in GetMnemonic()
134 const char *SBInstruction::GetOperands(SBTarget target) { in GetOperands()
154 const char *SBInstruction::GetComment(SBTarget target) { in GetComment()
155 LLDB_RECORD_METHOD(const char *, SBInstruction, GetComment, (lldb::SBTarget), in GetComment()
183 SBData SBInstruction::GetData(SBTarget target) { in GetData()
184 LLDB_RECORD_METHOD(lldb::SBData, SBInstruction, GetData, (lldb::SBTarget), in GetData()
359 (lldb::SBTarget)); in RegisterMethods()
361 (lldb::SBTarget)); in RegisterMethods()
363 (lldb::SBTarget)); in RegisterMethods()
[all …]
H A DSBDebugger.cpp774 SBTarget sb_target; in CreateTarget()
804 SBTarget
811 SBTarget sb_target; in CreateTargetWithFileAndTargetTriple()
839 SBTarget sb_target; in CreateTargetWithFileAndArch()
879 SBTarget sb_target; in CreateTarget()
903 SBTarget sb_target; in GetDummyTarget()
941 SBTarget sb_target; in GetTargetAtIndex()
967 SBTarget sb_target; in FindTargetWithProcessID()
980 SBTarget sb_target; in FindTargetWithFileAndArch()
994 SBTarget sb_target; in FindTargetWithLLDBProcess()
[all …]
H A DSBAddress.cpp44 SBAddress::SBAddress(lldb::addr_t load_addr, lldb::SBTarget &target) in SBAddress()
46 LLDB_RECORD_CONSTRUCTOR(SBAddress, (lldb::addr_t, lldb::SBTarget &), in SBAddress()
112 lldb::addr_t SBAddress::GetLoadAddress(const SBTarget &target) const { in GetLoadAddress()
114 (const lldb::SBTarget &), target); in GetLoadAddress()
128 void SBAddress::SetLoadAddress(lldb::addr_t load_addr, lldb::SBTarget &target) { in SetLoadAddress()
130 (lldb::addr_t, lldb::SBTarget &), load_addr, target); in SetLoadAddress()
287 LLDB_REGISTER_CONSTRUCTOR(SBAddress, (lldb::addr_t, lldb::SBTarget &)); in RegisterMethods()
299 (const lldb::SBTarget &)); in RegisterMethods()
301 (lldb::addr_t, lldb::SBTarget &)); in RegisterMethods()
H A DSBSymbol.cpp111 SBInstructionList SBSymbol::GetInstructions(SBTarget target) { in GetInstructions()
113 (lldb::SBTarget), target); in GetInstructions()
118 SBInstructionList SBSymbol::GetInstructions(SBTarget target, in GetInstructions()
121 (lldb::SBTarget, const char *), target, flavor_string); in GetInstructions()
223 (lldb::SBTarget)); in RegisterMethods()
225 (lldb::SBTarget, const char *)); in RegisterMethods()
H A DSBFunction.cpp113 SBInstructionList SBFunction::GetInstructions(SBTarget target) { in GetInstructions()
115 (lldb::SBTarget), target); in GetInstructions()
120 SBInstructionList SBFunction::GetInstructions(SBTarget target, in GetInstructions()
123 (lldb::SBTarget, const char *), target, flavor); in GetInstructions()
259 (lldb::SBTarget)); in RegisterMethods()
261 (lldb::SBTarget, const char *)); in RegisterMethods()
H A DSBSourceManager.cpp81 SBSourceManager::SBSourceManager(const SBTarget &target) { in SBSourceManager()
82 LLDB_RECORD_CONSTRUCTOR(SBSourceManager, (const lldb::SBTarget &), target); in SBSourceManager()
148 LLDB_REGISTER_CONSTRUCTOR(SBSourceManager, (const lldb::SBTarget &)); in RegisterMethods()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/API/
H A DSBDebugger.h174 lldb::SBTarget CreateTargetWithFileAndArch(const char *filename,
177 lldb::SBTarget CreateTarget(const char *filename);
179 lldb::SBTarget GetDummyTarget();
182 bool DeleteTarget(lldb::SBTarget &target);
184 lldb::SBTarget GetTargetAtIndex(uint32_t idx);
186 uint32_t GetIndexOfTarget(lldb::SBTarget target);
188 lldb::SBTarget FindTargetWithProcessID(pid_t pid);
190 lldb::SBTarget FindTargetWithFileAndArch(const char *filename,
195 lldb::SBTarget GetSelectedTarget();
197 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);
823 bool operator==(const lldb::SBTarget &rhs) const;
825 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.h184 lldb::SBValueList FindGlobalVariables(lldb::SBTarget &target,
198 lldb::SBValue FindFirstGlobalVariable(lldb::SBTarget &target,
302 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 DSBAttachInfo.h16 class SBTarget; variable
168 friend class SBTarget;
H A DSBSection.h43 lldb::addr_t GetLoadAddress(lldb::SBTarget &target);
88 friend class SBTarget; variable
/freebsd-13.1/contrib/llvm-project/lldb/bindings/interface/
H A DSBDebugger.i257 lldb::SBTarget
264 lldb::SBTarget
268 lldb::SBTarget
272 lldb::SBTarget
278 lldb::SBTarget GetDummyTarget();
284 DeleteTarget (lldb::SBTarget &target);
286 lldb::SBTarget
290 GetIndexOfTarget (lldb::SBTarget target);
292 lldb::SBTarget
295 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
964 operator == (const lldb::SBTarget &rhs) const;
967 operator != (const lldb::SBTarget &rhs) const;
975 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);

1234