Lines Matching refs:ExecutionContext
19 ExecutionContext::ExecutionContext() in ExecutionContext() function in ExecutionContext
22 ExecutionContext::ExecutionContext(const ExecutionContext &rhs) = default;
24 ExecutionContext::ExecutionContext(const lldb::TargetSP &target_sp, in ExecutionContext() function in ExecutionContext
31 ExecutionContext::ExecutionContext(const lldb::ProcessSP &process_sp) in ExecutionContext() function in ExecutionContext
37 ExecutionContext::ExecutionContext(const lldb::ThreadSP &thread_sp) in ExecutionContext() function in ExecutionContext
43 ExecutionContext::ExecutionContext(const lldb::StackFrameSP &frame_sp) in ExecutionContext() function in ExecutionContext
49 ExecutionContext::ExecutionContext(const lldb::TargetWP &target_wp, in ExecutionContext() function in ExecutionContext
57 ExecutionContext::ExecutionContext(const lldb::ProcessWP &process_wp) in ExecutionContext() function in ExecutionContext
64 ExecutionContext::ExecutionContext(const lldb::ThreadWP &thread_wp) in ExecutionContext() function in ExecutionContext
71 ExecutionContext::ExecutionContext(const lldb::StackFrameWP &frame_wp) in ExecutionContext() function in ExecutionContext
78 ExecutionContext::ExecutionContext(Target *t, in ExecutionContext() function in ExecutionContext
95 ExecutionContext::ExecutionContext(Process *process, Thread *thread, in ExecutionContext() function in ExecutionContext
108 ExecutionContext::ExecutionContext(const ExecutionContextRef &exe_ctx_ref) in ExecutionContext() function in ExecutionContext
114 ExecutionContext::ExecutionContext(const ExecutionContextRef *exe_ctx_ref_ptr, in ExecutionContext() function in ExecutionContext
128 ExecutionContext::ExecutionContext(const ExecutionContextRef *exe_ctx_ref_ptr, in ExecutionContext() function in ExecutionContext
143 ExecutionContext::ExecutionContext(const ExecutionContextRef &exe_ctx_ref, in ExecutionContext() function in ExecutionContext
156 ExecutionContext::ExecutionContext(ExecutionContextScope *exe_scope_ptr) in ExecutionContext() function in ExecutionContext
162 ExecutionContext::ExecutionContext(ExecutionContextScope &exe_scope_ref) { in ExecutionContext() function in ExecutionContext
166 void ExecutionContext::Clear() { in Clear()
173 ExecutionContext::~ExecutionContext() = default;
175 uint32_t ExecutionContext::GetAddressByteSize() const { in GetAddressByteSize()
183 lldb::ByteOrder ExecutionContext::GetByteOrder() const { in GetByteOrder()
191 RegisterContext *ExecutionContext::GetRegisterContext() const { in GetRegisterContext()
199 Target *ExecutionContext::GetTargetPtr() const { in GetTargetPtr()
207 Process *ExecutionContext::GetProcessPtr() const { in GetProcessPtr()
215 ExecutionContextScope *ExecutionContext::GetBestExecutionContextScope() const { in GetBestExecutionContextScope()
225 Target &ExecutionContext::GetTargetRef() const { in GetTargetRef()
230 Process &ExecutionContext::GetProcessRef() const { in GetProcessRef()
235 Thread &ExecutionContext::GetThreadRef() const { in GetThreadRef()
240 StackFrame &ExecutionContext::GetFrameRef() const { in GetFrameRef()
245 void ExecutionContext::SetTargetSP(const lldb::TargetSP &target_sp) { in SetTargetSP()
249 void ExecutionContext::SetProcessSP(const lldb::ProcessSP &process_sp) { in SetProcessSP()
253 void ExecutionContext::SetThreadSP(const lldb::ThreadSP &thread_sp) { in SetThreadSP()
257 void ExecutionContext::SetFrameSP(const lldb::StackFrameSP &frame_sp) { in SetFrameSP()
261 void ExecutionContext::SetTargetPtr(Target *target) { in SetTargetPtr()
268 void ExecutionContext::SetProcessPtr(Process *process) { in SetProcessPtr()
275 void ExecutionContext::SetThreadPtr(Thread *thread) { in SetThreadPtr()
282 void ExecutionContext::SetFramePtr(StackFrame *frame) { in SetFramePtr()
289 void ExecutionContext::SetContext(const lldb::TargetSP &target_sp, in SetContext()
300 void ExecutionContext::SetContext(const lldb::ProcessSP &process_sp) { in SetContext()
310 void ExecutionContext::SetContext(const lldb::ThreadSP &thread_sp) { in SetContext()
325 void ExecutionContext::SetContext(const lldb::StackFrameSP &frame_sp) { in SetContext()
346 ExecutionContext &ExecutionContext::operator=(const ExecutionContext &rhs) { in operator =()
356 bool ExecutionContext::operator==(const ExecutionContext &rhs) const { in operator ==()
376 bool ExecutionContext::operator!=(const ExecutionContext &rhs) const { in operator !=()
380 bool ExecutionContext::HasTargetScope() const { in HasTargetScope()
384 bool ExecutionContext::HasProcessScope() const { in HasProcessScope()
388 bool ExecutionContext::HasThreadScope() const { in HasThreadScope()
392 bool ExecutionContext::HasFrameScope() const { in HasFrameScope()
399 ExecutionContextRef::ExecutionContextRef(const ExecutionContext *exe_ctx) in ExecutionContextRef()
405 ExecutionContextRef::ExecutionContextRef(const ExecutionContext &exe_ctx) in ExecutionContextRef()
432 operator=(const ExecutionContext &exe_ctx) { in operator =()
610 ExecutionContext
612 return ExecutionContext(this, thread_and_frame_only_if_stopped); in Lock()