Lines Matching refs:m_frame_sp

20     : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() {}  in ExecutionContext()
24 m_thread_sp(rhs.m_thread_sp), m_frame_sp(rhs.m_frame_sp) {} in ExecutionContext()
28 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
34 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
40 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
46 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
53 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
60 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
67 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
74 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
82 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
90 m_frame_sp = m_thread_sp->GetSelectedFrame(); in ExecutionContext()
98 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
106 m_frame_sp = frame->shared_from_this(); in ExecutionContext()
113 m_frame_sp(exe_ctx_ref.GetFrameSP()) {} in ExecutionContext()
117 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
124 m_frame_sp = exe_ctx_ref_ptr->GetFrameSP(); in ExecutionContext()
131 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
139 m_frame_sp = exe_ctx_ref_ptr->GetFrameSP(); in ExecutionContext()
147 m_frame_sp() { in ExecutionContext()
153 m_frame_sp = exe_ctx_ref.GetFrameSP(); in ExecutionContext()
158 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
171 m_frame_sp.reset(); in Clear()
193 if (m_frame_sp) in GetRegisterContext()
194 return m_frame_sp->GetRegisterContext().get(); in GetRegisterContext()
217 if (m_frame_sp) in GetBestExecutionContextScope()
218 return m_frame_sp.get(); in GetBestExecutionContextScope()
242 assert(m_frame_sp); in GetFrameRef()
243 return *m_frame_sp; in GetFrameRef()
259 m_frame_sp = frame_sp; in SetFrameSP()
285 m_frame_sp = frame->shared_from_this(); in SetFramePtr()
287 m_frame_sp.reset(); in SetFramePtr()
298 m_frame_sp.reset(); in SetContext()
308 m_frame_sp.reset(); in SetContext()
312 m_frame_sp.reset(); in SetContext()
327 m_frame_sp = frame_sp; in SetContext()
352 m_frame_sp = rhs.m_frame_sp; in operator =()
361 if ((m_frame_sp == rhs.m_frame_sp) || in operator ==()
362 (m_frame_sp && rhs.m_frame_sp && in operator ==()
363 m_frame_sp->GetStackID() == rhs.m_frame_sp->GetStackID())) { in operator ==()
394 return HasThreadScope() && m_frame_sp; in HasFrameScope()