Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/common/
H A DHostThread.cpp16 HostThread::HostThread() : m_native_thread(new HostNativeThread) {} in HostThread()
19 : m_native_thread(new HostNativeThread(thread)) {} in HostThread()
33 HostNativeThread &HostThread::GetNativeThread() { in GetNativeThread()
34 return static_cast<HostNativeThread &>(*m_native_thread); in GetNativeThread()
37 const HostNativeThread &HostThread::GetNativeThread() const { in GetNativeThread()
38 return static_cast<const HostNativeThread &>(*m_native_thread); in GetNativeThread()
H A DThreadLauncher.cpp40 HostNativeThread::ThreadCreateTrampoline, info_ptr, 0, NULL); in LaunchThread()
72 HostNativeThread::ThreadCreateTrampoline, info_ptr); in LaunchThread()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/
H A DHostNativeThreadForward.h16 typedef HostThreadWindows HostNativeThread; typedef
19 typedef HostThreadMacOSX HostNativeThread;
22 typedef HostThreadPosix HostNativeThread;
H A DHostThread.h43 HostNativeThread &GetNativeThread();
44 const HostNativeThread &GetNativeThread() const;
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/
H A Dmodule.modulemap29 module HostNativeThread { header "Host/HostNativeThread.h" export * }