Home
last modified time | relevance | path

Searched refs:HostThread (Results 1 – 25 of 28) sorted by relevance

12

/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DHostThread.cpp15 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()
[all …]
H A DThreadLauncher.cpp24 llvm::Expected<HostThread>
78 return HostThread(thread); in LaunchThread()
H A DHostProcess.cpp31 llvm::Expected<HostThread> HostProcess::StartMonitoring( in StartMonitoring()
H A DMonitoringProcessLauncher.cpp57 llvm::Expected<HostThread> maybe_thread = in LaunchProcess()
H A DAlarm.cpp114 llvm::Expected<HostThread> alarm_thread = ThreadLauncher::LaunchThread( in StartAlarmThread()
H A DProcessLaunchInfo.cpp182 llvm::Expected<HostThread> maybe_thread = in MonitorProcess()
H A DHost.cpp133 llvm::Expected<HostThread> Host::StartMonitoringChildProcess( in StartMonitoringChildProcess()
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DHostThread.h29 class HostThread {
31 HostThread();
32 HostThread(lldb::thread_t thread);
H A DHostProcess.h31 class HostThread; variable
44 llvm::Expected<HostThread>
H A DHostNativeProcessBase.h19 class HostThread; variable
39 virtual llvm::Expected<HostThread>
H A DThreadLauncher.h22 static llvm::Expected<HostThread>
H A DAlarm.h92 HostThread m_alarm_thread;
H A DHost.h86 static llvm::Expected<HostThread>
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBHostOS.cpp16 #include "lldb/Host/HostThread.h"
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DDebugger.h661 HostThread SetIOHandlerThread(HostThread &new_thread);
731 HostThread m_event_handler_thread;
732 HostThread m_io_handler_thread;
H A DThreadedCommunication.h228 HostThread m_read_thread;
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/posix/
H A DHostProcessPosix.h34 llvm::Expected<HostThread>
/freebsd/contrib/llvm-project/lldb/source/Host/posix/
H A DHostProcessPosix.cpp63 llvm::Expected<HostThread> HostProcessPosix::StartMonitoring( in StartMonitoring()
/freebsd/contrib/llvm-project/lldb/include/
H A Dmodule.modulemap34 module HostThread { header "lldb/Host/HostThread.h" export * }
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.h223 HostThread m_listen_thread;
H A DProcessGDBRemote.h268 HostThread m_async_thread;
H A DGDBRemoteCommunication.cpp847 llvm::Expected<HostThread> listen_thread = ThreadLauncher::LaunchThread( in StartListenThread()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDebugger.cpp2005 llvm::Expected<HostThread> event_handler_thread = in StartEventHandlerThread()
2140 HostThread Debugger::SetIOHandlerThread(HostThread &new_thread) { in SetIOHandlerThread()
2141 HostThread old_host = m_io_handler_thread; in SetIOHandlerThread()
2148 llvm::Expected<HostThread> io_handler_thread = ThreadLauncher::LaunchThread( in StartIOHandlerThread()
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp3400 HostThread new_io_handler_thread(Host::GetCurrentThread()); in RunCommandInterpreter()
3401 HostThread old_io_handler_thread = in RunCommandInterpreter()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DProcess.h3060 HostThread m_private_state_thread; ///< Thread ID for the thread that watches

12