Lines Matching refs:HostThread
15 HostThread::HostThread() : m_native_thread(new HostNativeThread) {} in HostThread() function in HostThread
17 HostThread::HostThread(lldb::thread_t thread) in HostThread() function in HostThread
20 Status HostThread::Join(lldb::thread_result_t *result) { in Join()
24 Status HostThread::Cancel() { return m_native_thread->Cancel(); } in Cancel()
26 void HostThread::Reset() { return m_native_thread->Reset(); } in Reset()
28 lldb::thread_t HostThread::Release() { return m_native_thread->Release(); } in Release()
30 bool HostThread::IsJoinable() const { return m_native_thread->IsJoinable(); } in IsJoinable()
32 HostNativeThread &HostThread::GetNativeThread() { in GetNativeThread()
36 const HostNativeThread &HostThread::GetNativeThread() const { in GetNativeThread()
40 lldb::thread_result_t HostThread::GetResult() const { in GetResult()
44 bool HostThread::EqualsThread(lldb::thread_t thread) const { in EqualsThread()