Home
last modified time | relevance | path

Searched refs:m_thread_sp (Results 1 – 8 of 8) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DExecutionContext.cpp24 m_thread_sp(rhs.m_thread_sp), m_frame_sp(rhs.m_frame_sp) {} in ExecutionContext()
170 m_thread_sp.reset(); in Clear()
219 if (m_thread_sp) in GetBestExecutionContextScope()
237 assert(m_thread_sp); in GetThreadRef()
238 return *m_thread_sp; in GetThreadRef()
297 m_thread_sp.reset(); in SetContext()
307 m_thread_sp.reset(); in SetContext()
351 m_thread_sp = rhs.m_thread_sp; in operator =()
367 if ((m_thread_sp == rhs.m_thread_sp) || in operator ==()
368 (m_thread_sp && rhs.m_thread_sp && in operator ==()
[all …]
H A DThread.cpp157 : m_thread_sp(thread_sp), m_stack_id() {} in ThreadEventData()
161 : m_thread_sp(thread_sp), m_stack_id(stack_id) {} in ThreadEventData()
163 Thread::ThreadEventData::ThreadEventData() : m_thread_sp(), m_stack_id() {} in ThreadEventData()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DDecodedThread.cpp102 : m_thread_sp(thread_sp) { in DecodedThread()
109 : m_thread_sp(thread_sp), m_instructions(std::move(instructions)), in DecodedThread()
117 return std::make_unique<TraceCursorIntelPT>(m_thread_sp, shared_from_this()); in GetCursor()
H A DIntelPTDecoder.cpp268 : m_thread_sp(thread.shared_from_this()), m_trace(trace) {} in LiveThreadDecoder()
273 DecodeLiveThread(*m_thread_sp, m_trace, raw_trace_size)) in DoDecode()
275 m_thread_sp, std::move(*instructions), raw_trace_size); in DoDecode()
277 return std::make_shared<DecodedThread>(m_thread_sp, in DoDecode()
H A DIntelPTDecoder.h80 lldb::ThreadSP m_thread_sp; variable
H A DDecodedThread.h154 lldb::ThreadSP m_thread_sp;
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DExecutionContext.h399 Thread *GetThreadPtr() const { return m_thread_sp.get(); } in GetThreadPtr()
464 const lldb::ThreadSP &GetThreadSP() const { return m_thread_sp; } in GetThreadSP()
563 lldb::ThreadSP m_thread_sp; ///< The thread that owns the frame variable
H A DThread.h109 lldb::ThreadSP GetThread() const { return m_thread_sp; } in GetThread()
114 lldb::ThreadSP m_thread_sp;