Home
last modified time | relevance | path

Searched refs:HostThread (Results 1 – 22 of 22) 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() function in HostThread
18 HostThread::HostThread(lldb::thread_t thread) in HostThread() function in HostThread
21 Status HostThread::Join(lldb::thread_result_t *result) { in Join()
25 Status HostThread::Cancel() { return m_native_thread->Cancel(); } in Cancel()
27 void HostThread::Reset() { return m_native_thread->Reset(); } in Reset()
29 lldb::thread_t HostThread::Release() { return m_native_thread->Release(); } in Release()
31 bool HostThread::IsJoinable() const { return m_native_thread->IsJoinable(); } in IsJoinable()
33 HostNativeThread &HostThread::GetNativeThread() { in GetNativeThread()
37 const HostNativeThread &HostThread::GetNativeThread() const { in GetNativeThread()
41 lldb::thread_result_t HostThread::GetResult() const { in GetResult()
[all …]
H A DThreadLauncher.cpp24 HostThread ThreadLauncher::LaunchThread(llvm::StringRef name, in LaunchThread()
84 return HostThread(thread); in LaunchThread()
H A DHostProcess.cpp36 HostThread
H A DHost.cpp104 HostThread Host::StartMonitoringChildProcess( in StartMonitoringChildProcess()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/
H A DHostThread.h32 class HostThread {
34 HostThread();
35 HostThread(lldb::thread_t thread);
H A DHostProcess.h35 class HostThread; variable
49 HostThread StartMonitoring(const Host::MonitorChildProcessCallback &callback,
H A DHostNativeProcessBase.h20 class HostThread; variable
39 virtual HostThread
H A DThreadLauncher.h24 static HostThread
H A DHost.h106 static HostThread
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBHostOS.cpp112 HostThread thread(ThreadLauncher::LaunchThread( in ThreadCreate()
121 HostThread host_thread(thread); in ThreadCancel()
135 HostThread host_thread(thread); in ThreadDetach()
147 HostThread host_thread(thread); in ThreadJoin()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/
H A DProcessMonitor.h187 lldb_private::HostThread m_operation_thread;
188 lldb_private::HostThread m_monitor_thread;
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/posix/
H A DHostProcessPosix.h36 HostThread StartMonitoring(const Host::MonitorChildProcessCallback &callback,
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationReplayServer.h71 HostThread m_async_thread;
H A DGDBRemoteCommunication.h218 HostThread m_listen_thread;
H A DProcessGDBRemote.h279 HostThread m_async_thread;
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/
H A Dmodule.modulemap31 module HostThread { header "Host/HostThread.h" export * }
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/
H A DDebugger.h403 HostThread m_event_handler_thread;
404 HostThread m_io_handler_thread;
H A DCommunication.h339 HostThread m_read_thread; ///< The read thread handle in case we need to
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/posix/
H A DHostProcessPosix.cpp91 HostThread HostProcessPosix::StartMonitoring( in StartMonitoring()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DProcess.h3037 HostThread m_private_state_thread; ///< Thread ID for the thread that watches
/freebsd-12.1/lib/clang/liblldb/
H A DMakefile217 SRCS+= Host/common/HostThread.cpp
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DProcess.cpp4942 HostThread backup_private_state_thread; in RunThreadPlan()