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
94 ExecutionContext::ExecutionContext(Process *process, Thread *thread, in ExecutionContext() function in ExecutionContext
107 ExecutionContext::ExecutionContext(const ExecutionContextRef &exe_ctx_ref) in ExecutionContext() function in ExecutionContext
113 ExecutionContext::ExecutionContext(const ExecutionContextRef *exe_ctx_ref_ptr, in ExecutionContext() function in ExecutionContext
127 ExecutionContext::ExecutionContext(const ExecutionContextRef *exe_ctx_ref_ptr, in ExecutionContext() function in ExecutionContext
142 ExecutionContext::ExecutionContext(const ExecutionContextRef &exe_ctx_ref, in ExecutionContext() function in ExecutionContext
155 ExecutionContext::ExecutionContext(ExecutionContextScope *exe_scope_ptr) in ExecutionContext() function in ExecutionContext
161 ExecutionContext::ExecutionContext(ExecutionContextScope &exe_scope_ref) { in ExecutionContext() function in ExecutionContext
165 void ExecutionContext::Clear() { in Clear()
172 ExecutionContext::~ExecutionContext() = default;
174 uint32_t ExecutionContext::GetAddressByteSize() const { in GetAddressByteSize()
182 lldb::ByteOrder ExecutionContext::GetByteOrder() const { in GetByteOrder()
190 RegisterContext *ExecutionContext::GetRegisterContext() const { in GetRegisterContext()
198 Target *ExecutionContext::GetTargetPtr() const { in GetTargetPtr()
206 Process *ExecutionContext::GetProcessPtr() const { in GetProcessPtr()
214 ExecutionContextScope *ExecutionContext::GetBestExecutionContextScope() const { in GetBestExecutionContextScope()
224 Target &ExecutionContext::GetTargetRef() const { in GetTargetRef()
229 Process &ExecutionContext::GetProcessRef() const { in GetProcessRef()
234 Thread &ExecutionContext::GetThreadRef() const { in GetThreadRef()
239 StackFrame &ExecutionContext::GetFrameRef() const { in GetFrameRef()
244 void ExecutionContext::SetTargetSP(const lldb::TargetSP &target_sp) { in SetTargetSP()
248 void ExecutionContext::SetProcessSP(const lldb::ProcessSP &process_sp) { in SetProcessSP()
252 void ExecutionContext::SetThreadSP(const lldb::ThreadSP &thread_sp) { in SetThreadSP()
256 void ExecutionContext::SetFrameSP(const lldb::StackFrameSP &frame_sp) { in SetFrameSP()
260 void ExecutionContext::SetTargetPtr(Target *target) { in SetTargetPtr()
267 void ExecutionContext::SetProcessPtr(Process *process) { in SetProcessPtr()
274 void ExecutionContext::SetThreadPtr(Thread *thread) { in SetThreadPtr()
281 void ExecutionContext::SetFramePtr(StackFrame *frame) { in SetFramePtr()
288 void ExecutionContext::SetContext(const lldb::TargetSP &target_sp, in SetContext()
299 void ExecutionContext::SetContext(const lldb::ProcessSP &process_sp) { in SetContext()
309 void ExecutionContext::SetContext(const lldb::ThreadSP &thread_sp) { in SetContext()
324 void ExecutionContext::SetContext(const lldb::StackFrameSP &frame_sp) { in SetContext()
345 ExecutionContext &ExecutionContext::operator=(const ExecutionContext &rhs) { in operator =()
355 bool ExecutionContext::operator==(const ExecutionContext &rhs) const { in operator ==()
375 bool ExecutionContext::operator!=(const ExecutionContext &rhs) const { in operator !=()
379 bool ExecutionContext::HasTargetScope() const { in HasTargetScope()
383 bool ExecutionContext::HasProcessScope() const { in HasProcessScope()
387 bool ExecutionContext::HasThreadScope() const { in HasThreadScope()
391 bool ExecutionContext::HasFrameScope() const { in HasFrameScope()
398 ExecutionContextRef::ExecutionContextRef(const ExecutionContext *exe_ctx) in ExecutionContextRef()
404 ExecutionContextRef::ExecutionContextRef(const ExecutionContext &exe_ctx) in ExecutionContextRef()
431 operator=(const ExecutionContext &exe_ctx) { in operator =()
608 ExecutionContext
610 return ExecutionContext(this, thread_and_frame_only_if_stopped); in Lock()