Lines Matching refs:ExecutionContext
20 ExecutionContext::ExecutionContext() in ExecutionContext() function in ExecutionContext
23 ExecutionContext::ExecutionContext(const ExecutionContext &rhs) in ExecutionContext() function in ExecutionContext
27 ExecutionContext::ExecutionContext(const lldb::TargetSP &target_sp, in ExecutionContext() function in ExecutionContext
34 ExecutionContext::ExecutionContext(const lldb::ProcessSP &process_sp) in ExecutionContext() function in ExecutionContext
40 ExecutionContext::ExecutionContext(const lldb::ThreadSP &thread_sp) in ExecutionContext() function in ExecutionContext
46 ExecutionContext::ExecutionContext(const lldb::StackFrameSP &frame_sp) in ExecutionContext() function in ExecutionContext
52 ExecutionContext::ExecutionContext(const lldb::TargetWP &target_wp, in ExecutionContext() function in ExecutionContext
60 ExecutionContext::ExecutionContext(const lldb::ProcessWP &process_wp) in ExecutionContext() function in ExecutionContext
67 ExecutionContext::ExecutionContext(const lldb::ThreadWP &thread_wp) in ExecutionContext() function in ExecutionContext
74 ExecutionContext::ExecutionContext(const lldb::StackFrameWP &frame_wp) in ExecutionContext() function in ExecutionContext
81 ExecutionContext::ExecutionContext(Target *t, in ExecutionContext() function in ExecutionContext
97 ExecutionContext::ExecutionContext(Process *process, Thread *thread, in ExecutionContext() function in ExecutionContext
110 ExecutionContext::ExecutionContext(const ExecutionContextRef &exe_ctx_ref) in ExecutionContext() function in ExecutionContext
116 ExecutionContext::ExecutionContext(const ExecutionContextRef *exe_ctx_ref_ptr, in ExecutionContext() function in ExecutionContext
130 ExecutionContext::ExecutionContext(const ExecutionContextRef *exe_ctx_ref_ptr, in ExecutionContext() function in ExecutionContext
145 ExecutionContext::ExecutionContext(const ExecutionContextRef &exe_ctx_ref, in ExecutionContext() function in ExecutionContext
158 ExecutionContext::ExecutionContext(ExecutionContextScope *exe_scope_ptr) in ExecutionContext() function in ExecutionContext
164 ExecutionContext::ExecutionContext(ExecutionContextScope &exe_scope_ref) { in ExecutionContext() function in ExecutionContext
168 void ExecutionContext::Clear() { in Clear()
175 ExecutionContext::~ExecutionContext() = default;
177 uint32_t ExecutionContext::GetAddressByteSize() const { in GetAddressByteSize()
185 lldb::ByteOrder ExecutionContext::GetByteOrder() const { in GetByteOrder()
193 RegisterContext *ExecutionContext::GetRegisterContext() const { in GetRegisterContext()
201 Target *ExecutionContext::GetTargetPtr() const { in GetTargetPtr()
209 Process *ExecutionContext::GetProcessPtr() const { in GetProcessPtr()
217 ExecutionContextScope *ExecutionContext::GetBestExecutionContextScope() const { in GetBestExecutionContextScope()
227 Target &ExecutionContext::GetTargetRef() const { in GetTargetRef()
234 Process &ExecutionContext::GetProcessRef() const { in GetProcessRef()
241 Thread &ExecutionContext::GetThreadRef() const { in GetThreadRef()
248 StackFrame &ExecutionContext::GetFrameRef() const { in GetFrameRef()
255 void ExecutionContext::SetTargetSP(const lldb::TargetSP &target_sp) { in SetTargetSP()
259 void ExecutionContext::SetProcessSP(const lldb::ProcessSP &process_sp) { in SetProcessSP()
263 void ExecutionContext::SetThreadSP(const lldb::ThreadSP &thread_sp) { in SetThreadSP()
267 void ExecutionContext::SetFrameSP(const lldb::StackFrameSP &frame_sp) { in SetFrameSP()
271 void ExecutionContext::SetTargetPtr(Target *target) { in SetTargetPtr()
278 void ExecutionContext::SetProcessPtr(Process *process) { in SetProcessPtr()
285 void ExecutionContext::SetThreadPtr(Thread *thread) { in SetThreadPtr()
292 void ExecutionContext::SetFramePtr(StackFrame *frame) { in SetFramePtr()
299 void ExecutionContext::SetContext(const lldb::TargetSP &target_sp, in SetContext()
310 void ExecutionContext::SetContext(const lldb::ProcessSP &process_sp) { in SetContext()
320 void ExecutionContext::SetContext(const lldb::ThreadSP &thread_sp) { in SetContext()
335 void ExecutionContext::SetContext(const lldb::StackFrameSP &frame_sp) { in SetContext()
356 ExecutionContext &ExecutionContext::operator=(const ExecutionContext &rhs) { in operator =()
366 bool ExecutionContext::operator==(const ExecutionContext &rhs) const { in operator ==()
386 bool ExecutionContext::operator!=(const ExecutionContext &rhs) const { in operator !=()
390 bool ExecutionContext::HasTargetScope() const { in HasTargetScope()
394 bool ExecutionContext::HasProcessScope() const { in HasProcessScope()
398 bool ExecutionContext::HasThreadScope() const { in HasThreadScope()
402 bool ExecutionContext::HasFrameScope() const { in HasFrameScope()
410 ExecutionContextRef::ExecutionContextRef(const ExecutionContext *exe_ctx) in ExecutionContextRef()
417 ExecutionContextRef::ExecutionContextRef(const ExecutionContext &exe_ctx) in ExecutionContextRef()
447 operator=(const ExecutionContext &exe_ctx) { in operator =()
624 ExecutionContext
626 return ExecutionContext(this, thread_and_frame_only_if_stopped); in Lock()