Lines Matching refs:ExecutionContext
19 ExecutionContext::ExecutionContext() in ExecutionContext() function in ExecutionContext
22 ExecutionContext::ExecutionContext(const ExecutionContext &rhs) in ExecutionContext() function in ExecutionContext
26 ExecutionContext::ExecutionContext(const lldb::TargetSP &target_sp, in ExecutionContext() function in ExecutionContext
33 ExecutionContext::ExecutionContext(const lldb::ProcessSP &process_sp) in ExecutionContext() function in ExecutionContext
39 ExecutionContext::ExecutionContext(const lldb::ThreadSP &thread_sp) in ExecutionContext() function in ExecutionContext
45 ExecutionContext::ExecutionContext(const lldb::StackFrameSP &frame_sp) in ExecutionContext() function in ExecutionContext
51 ExecutionContext::ExecutionContext(const lldb::TargetWP &target_wp, in ExecutionContext() function in ExecutionContext
59 ExecutionContext::ExecutionContext(const lldb::ProcessWP &process_wp) in ExecutionContext() function in ExecutionContext
66 ExecutionContext::ExecutionContext(const lldb::ThreadWP &thread_wp) in ExecutionContext() function in ExecutionContext
73 ExecutionContext::ExecutionContext(const lldb::StackFrameWP &frame_wp) in ExecutionContext() function in ExecutionContext
80 ExecutionContext::ExecutionContext(Target *t, in ExecutionContext() function in ExecutionContext
96 ExecutionContext::ExecutionContext(Process *process, Thread *thread, in ExecutionContext() function in ExecutionContext
109 ExecutionContext::ExecutionContext(const ExecutionContextRef &exe_ctx_ref) in ExecutionContext() function in ExecutionContext
115 ExecutionContext::ExecutionContext(const ExecutionContextRef *exe_ctx_ref_ptr, in ExecutionContext() function in ExecutionContext
129 ExecutionContext::ExecutionContext(const ExecutionContextRef *exe_ctx_ref_ptr, in ExecutionContext() function in ExecutionContext
144 ExecutionContext::ExecutionContext(const ExecutionContextRef &exe_ctx_ref, in ExecutionContext() function in ExecutionContext
157 ExecutionContext::ExecutionContext(ExecutionContextScope *exe_scope_ptr) in ExecutionContext() function in ExecutionContext
163 ExecutionContext::ExecutionContext(ExecutionContextScope &exe_scope_ref) { in ExecutionContext() function in ExecutionContext
167 void ExecutionContext::Clear() { in Clear()
174 ExecutionContext::~ExecutionContext() = default;
176 uint32_t ExecutionContext::GetAddressByteSize() const { in GetAddressByteSize()
184 lldb::ByteOrder ExecutionContext::GetByteOrder() const { in GetByteOrder()
192 RegisterContext *ExecutionContext::GetRegisterContext() const { in GetRegisterContext()
200 Target *ExecutionContext::GetTargetPtr() const { in GetTargetPtr()
208 Process *ExecutionContext::GetProcessPtr() const { in GetProcessPtr()
216 ExecutionContextScope *ExecutionContext::GetBestExecutionContextScope() const { in GetBestExecutionContextScope()
226 Target &ExecutionContext::GetTargetRef() const { in GetTargetRef()
231 Process &ExecutionContext::GetProcessRef() const { in GetProcessRef()
236 Thread &ExecutionContext::GetThreadRef() const { in GetThreadRef()
241 StackFrame &ExecutionContext::GetFrameRef() const { in GetFrameRef()
246 void ExecutionContext::SetTargetSP(const lldb::TargetSP &target_sp) { in SetTargetSP()
250 void ExecutionContext::SetProcessSP(const lldb::ProcessSP &process_sp) { in SetProcessSP()
254 void ExecutionContext::SetThreadSP(const lldb::ThreadSP &thread_sp) { in SetThreadSP()
258 void ExecutionContext::SetFrameSP(const lldb::StackFrameSP &frame_sp) { in SetFrameSP()
262 void ExecutionContext::SetTargetPtr(Target *target) { in SetTargetPtr()
269 void ExecutionContext::SetProcessPtr(Process *process) { in SetProcessPtr()
276 void ExecutionContext::SetThreadPtr(Thread *thread) { in SetThreadPtr()
283 void ExecutionContext::SetFramePtr(StackFrame *frame) { in SetFramePtr()
290 void ExecutionContext::SetContext(const lldb::TargetSP &target_sp, in SetContext()
301 void ExecutionContext::SetContext(const lldb::ProcessSP &process_sp) { in SetContext()
311 void ExecutionContext::SetContext(const lldb::ThreadSP &thread_sp) { in SetContext()
326 void ExecutionContext::SetContext(const lldb::StackFrameSP &frame_sp) { in SetContext()
347 ExecutionContext &ExecutionContext::operator=(const ExecutionContext &rhs) { in operator =()
357 bool ExecutionContext::operator==(const ExecutionContext &rhs) const { in operator ==()
377 bool ExecutionContext::operator!=(const ExecutionContext &rhs) const { in operator !=()
381 bool ExecutionContext::HasTargetScope() const { in HasTargetScope()
385 bool ExecutionContext::HasProcessScope() const { in HasProcessScope()
389 bool ExecutionContext::HasThreadScope() const { in HasThreadScope()
393 bool ExecutionContext::HasFrameScope() const { in HasFrameScope()
401 ExecutionContextRef::ExecutionContextRef(const ExecutionContext *exe_ctx) in ExecutionContextRef()
408 ExecutionContextRef::ExecutionContextRef(const ExecutionContext &exe_ctx) in ExecutionContextRef()
438 operator=(const ExecutionContext &exe_ctx) { in operator =()
615 ExecutionContext
617 return ExecutionContext(this, thread_and_frame_only_if_stopped); in Lock()