Lines Matching refs:m_frame_sp
20 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() {} in ExecutionContext()
26 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
32 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
38 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
44 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
51 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
58 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
65 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
72 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
80 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
88 m_frame_sp = in ExecutionContext()
97 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
105 m_frame_sp = frame->shared_from_this(); in ExecutionContext()
112 m_frame_sp(exe_ctx_ref.GetFrameSP()) {} in ExecutionContext()
116 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
123 m_frame_sp = exe_ctx_ref_ptr->GetFrameSP(); in ExecutionContext()
130 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
138 m_frame_sp = exe_ctx_ref_ptr->GetFrameSP(); in ExecutionContext()
146 m_frame_sp() { in ExecutionContext()
152 m_frame_sp = exe_ctx_ref.GetFrameSP(); in ExecutionContext()
157 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
170 m_frame_sp.reset(); in Clear()
192 if (m_frame_sp) in GetRegisterContext()
193 return m_frame_sp->GetRegisterContext().get(); in GetRegisterContext()
216 if (m_frame_sp) in GetBestExecutionContextScope()
217 return m_frame_sp.get(); in GetBestExecutionContextScope()
241 assert(m_frame_sp); in GetFrameRef()
242 return *m_frame_sp; in GetFrameRef()
258 m_frame_sp = frame_sp; in SetFrameSP()
284 m_frame_sp = frame->shared_from_this(); in SetFramePtr()
286 m_frame_sp.reset(); in SetFramePtr()
297 m_frame_sp.reset(); in SetContext()
307 m_frame_sp.reset(); in SetContext()
311 m_frame_sp.reset(); in SetContext()
326 m_frame_sp = frame_sp; in SetContext()
351 m_frame_sp = rhs.m_frame_sp; in operator =()
360 if ((m_frame_sp == rhs.m_frame_sp) || in operator ==()
361 (m_frame_sp && rhs.m_frame_sp && in operator ==()
362 m_frame_sp->GetStackID() == rhs.m_frame_sp->GetStackID())) { in operator ==()
393 return HasThreadScope() && m_frame_sp; in HasFrameScope()