Home
last modified time | relevance | path

Searched refs:HostNativeThread (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DHostThread.cpp15 HostThread::HostThread() : m_native_thread(new HostNativeThread) {} in HostThread()
18 : m_native_thread(new HostNativeThread(thread)) {} in HostThread()
32 HostNativeThread &HostThread::GetNativeThread() { in GetNativeThread()
33 return static_cast<HostNativeThread &>(*m_native_thread); in GetNativeThread()
36 const HostNativeThread &HostThread::GetNativeThread() const { in GetNativeThread()
37 return static_cast<const HostNativeThread &>(*m_native_thread); in GetNativeThread()
H A DThreadLauncher.cpp35 HostNativeThread::ThreadCreateTrampoline, info_up.get(), 0, NULL); in LaunchThread()
67 HostNativeThread::ThreadCreateTrampoline, info_up.get()); in LaunchThread()
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DHostNativeThreadForward.h15 typedef HostThreadWindows HostNativeThread; typedef
18 typedef HostThreadMacOSX HostNativeThread;
21 typedef HostThreadPosix HostNativeThread;
H A DHostThread.h40 HostNativeThread &GetNativeThread();
41 const HostNativeThread &GetNativeThread() const;
/freebsd/contrib/llvm-project/lldb/include/
H A Dmodule.modulemap32 module HostNativeThread { header "lldb/Host/HostNativeThread.h" export * }