Lines Matching refs:SBExecutionContext
22 SBExecutionContext::SBExecutionContext() : m_exe_ctx_sp() { in SBExecutionContext() function in SBExecutionContext
23 LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBExecutionContext); in SBExecutionContext()
26 SBExecutionContext::SBExecutionContext(const lldb::SBExecutionContext &rhs) in SBExecutionContext() function in SBExecutionContext
28 LLDB_RECORD_CONSTRUCTOR(SBExecutionContext, in SBExecutionContext()
29 (const lldb::SBExecutionContext &), rhs); in SBExecutionContext()
32 SBExecutionContext::SBExecutionContext( in SBExecutionContext() function in SBExecutionContext
35 LLDB_RECORD_CONSTRUCTOR(SBExecutionContext, (lldb::ExecutionContextRefSP), in SBExecutionContext()
39 SBExecutionContext::SBExecutionContext(const lldb::SBTarget &target) in SBExecutionContext() function in SBExecutionContext
41 LLDB_RECORD_CONSTRUCTOR(SBExecutionContext, (const lldb::SBTarget &), target); in SBExecutionContext()
46 SBExecutionContext::SBExecutionContext(const lldb::SBProcess &process) in SBExecutionContext() function in SBExecutionContext
48 LLDB_RECORD_CONSTRUCTOR(SBExecutionContext, (const lldb::SBProcess &), in SBExecutionContext()
54 SBExecutionContext::SBExecutionContext(lldb::SBThread thread) in SBExecutionContext() function in SBExecutionContext
56 LLDB_RECORD_CONSTRUCTOR(SBExecutionContext, (lldb::SBThread), thread); in SBExecutionContext()
61 SBExecutionContext::SBExecutionContext(const lldb::SBFrame &frame) in SBExecutionContext() function in SBExecutionContext
63 LLDB_RECORD_CONSTRUCTOR(SBExecutionContext, (const lldb::SBFrame &), frame); in SBExecutionContext()
68 SBExecutionContext::~SBExecutionContext() = default;
70 const SBExecutionContext &SBExecutionContext::
71 operator=(const lldb::SBExecutionContext &rhs) { in operator =()
73 const lldb::SBExecutionContext &, in operator =()
74 SBExecutionContext, operator=,(const lldb::SBExecutionContext &), rhs); in operator =()
80 ExecutionContextRef *SBExecutionContext::get() const { in get()
84 SBTarget SBExecutionContext::GetTarget() const { in GetTarget()
85 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBTarget, SBExecutionContext, in GetTarget()
97 SBProcess SBExecutionContext::GetProcess() const { in GetProcess()
98 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBProcess, SBExecutionContext, in GetProcess()
110 SBThread SBExecutionContext::GetThread() const { in GetThread()
111 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBThread, SBExecutionContext, in GetThread()
123 SBFrame SBExecutionContext::GetFrame() const { in GetFrame()
124 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBFrame, SBExecutionContext, GetFrame); in GetFrame()
139 void RegisterMethods<SBExecutionContext>(Registry &R) { in RegisterMethods()
140 LLDB_REGISTER_CONSTRUCTOR(SBExecutionContext, ()); in RegisterMethods()
141 LLDB_REGISTER_CONSTRUCTOR(SBExecutionContext, in RegisterMethods()
142 (const lldb::SBExecutionContext &)); in RegisterMethods()
143 LLDB_REGISTER_CONSTRUCTOR(SBExecutionContext, in RegisterMethods()
145 LLDB_REGISTER_CONSTRUCTOR(SBExecutionContext, (const lldb::SBTarget &)); in RegisterMethods()
146 LLDB_REGISTER_CONSTRUCTOR(SBExecutionContext, (const lldb::SBProcess &)); in RegisterMethods()
147 LLDB_REGISTER_CONSTRUCTOR(SBExecutionContext, (lldb::SBThread)); in RegisterMethods()
148 LLDB_REGISTER_CONSTRUCTOR(SBExecutionContext, (const lldb::SBFrame &)); in RegisterMethods()
150 const lldb::SBExecutionContext &, in RegisterMethods()
151 SBExecutionContext, operator=,(const lldb::SBExecutionContext &)); in RegisterMethods()
152 LLDB_REGISTER_METHOD_CONST(lldb::SBTarget, SBExecutionContext, GetTarget, in RegisterMethods()
154 LLDB_REGISTER_METHOD_CONST(lldb::SBProcess, SBExecutionContext, GetProcess, in RegisterMethods()
156 LLDB_REGISTER_METHOD_CONST(lldb::SBThread, SBExecutionContext, GetThread, in RegisterMethods()
158 LLDB_REGISTER_METHOD_CONST(lldb::SBFrame, SBExecutionContext, GetFrame, ()); in RegisterMethods()