Home
last modified time | relevance | path

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

/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()
/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;
/llvm-project/lldb/include/
H A Dmodule.modulemap32 module HostNativeThread { header "lldb/Host/HostNativeThread.h" export * }
/llvm-project/lldb/source/Plugins/Process/Windows/Common/
H A DProcessWindows.cpp795 const HostNativeThread &native_new_thread = new_thread.GetNativeThread(); in OnLoadDll()