Lines Matching refs:m_target_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()
82 m_target_sp = t->shared_from_this(); in ExecutionContext()
97 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
100 m_target_sp = process->GetTarget().shared_from_this(); in ExecutionContext()
109 : m_target_sp(exe_ctx_ref.GetTargetSP()), in ExecutionContext()
116 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
118 m_target_sp = exe_ctx_ref_ptr->GetTargetSP(); in ExecutionContext()
130 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
132 m_target_sp = exe_ctx_ref_ptr->GetTargetSP(); in ExecutionContext()
133 if (m_target_sp) { in ExecutionContext()
134 lock = std::unique_lock<std::recursive_mutex>(m_target_sp->GetAPIMutex()); in ExecutionContext()
145 : m_target_sp(exe_ctx_ref.GetTargetSP()), m_process_sp(), m_thread_sp(), in ExecutionContext()
147 if (m_target_sp) { in ExecutionContext()
148 lock = std::unique_lock<std::recursive_mutex>(m_target_sp->GetAPIMutex()); in ExecutionContext()
157 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
167 m_target_sp.reset(); in Clear()
176 if (m_target_sp && m_target_sp->GetArchitecture().IsValid()) in GetAddressByteSize()
177 return m_target_sp->GetArchitecture().GetAddressByteSize(); in GetAddressByteSize()
184 if (m_target_sp && m_target_sp->GetArchitecture().IsValid()) in GetByteOrder()
185 return m_target_sp->GetArchitecture().GetByteOrder(); in GetByteOrder()
200 if (m_target_sp) in GetTargetPtr()
201 return m_target_sp.get(); in GetTargetPtr()
210 if (m_target_sp) in GetProcessPtr()
211 return m_target_sp->GetProcessSP().get(); in GetProcessPtr()
222 return m_target_sp.get(); in GetBestExecutionContextScope()
226 assert(m_target_sp); in GetTargetRef()
227 return *m_target_sp; in GetTargetRef()
246 m_target_sp = target_sp; in SetTargetSP()
263 m_target_sp = target->shared_from_this(); in SetTargetPtr()
265 m_target_sp.reset(); in SetTargetPtr()
291 m_target_sp = target_sp; in SetContext()
303 m_target_sp = process_sp->GetTarget().shared_from_this(); in SetContext()
305 m_target_sp.reset(); in SetContext()
316 m_target_sp = m_process_sp->GetTarget().shared_from_this(); in SetContext()
318 m_target_sp.reset(); in SetContext()
320 m_target_sp.reset(); in SetContext()
332 m_target_sp = m_process_sp->GetTarget().shared_from_this(); in SetContext()
334 m_target_sp.reset(); in SetContext()
336 m_target_sp.reset(); in SetContext()
340 m_target_sp.reset(); in SetContext()
348 m_target_sp = rhs.m_target_sp; in operator =()
370 return m_process_sp == rhs.m_process_sp && m_target_sp == rhs.m_target_sp; in operator ==()
381 return ((bool)m_target_sp && m_target_sp->IsValid()); in HasTargetScope()