/freebsd/contrib/llvm-project/lldb/source/Host/common/ |
H A D | HostThread.cpp | 15 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 D | ThreadLauncher.cpp | 24 llvm::Expected<HostThread> 78 return HostThread(thread); in LaunchThread()
|
H A D | HostProcess.cpp | 31 llvm::Expected<HostThread> HostProcess::StartMonitoring( in StartMonitoring()
|
H A D | MonitoringProcessLauncher.cpp | 57 llvm::Expected<HostThread> maybe_thread = in LaunchProcess()
|
H A D | Alarm.cpp | 114 llvm::Expected<HostThread> alarm_thread = ThreadLauncher::LaunchThread( in StartAlarmThread()
|
H A D | ProcessLaunchInfo.cpp | 182 llvm::Expected<HostThread> maybe_thread = in MonitorProcess()
|
H A D | Host.cpp | 133 llvm::Expected<HostThread> Host::StartMonitoringChildProcess( in StartMonitoringChildProcess()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/ |
H A D | HostThread.h | 29 class HostThread { 31 HostThread(); 32 HostThread(lldb::thread_t thread);
|
H A D | HostProcess.h | 31 class HostThread; variable 44 llvm::Expected<HostThread>
|
H A D | HostNativeProcessBase.h | 19 class HostThread; variable 39 virtual llvm::Expected<HostThread>
|
H A D | ThreadLauncher.h | 22 static llvm::Expected<HostThread>
|
H A D | Alarm.h | 92 HostThread m_alarm_thread;
|
H A D | Host.h | 86 static llvm::Expected<HostThread>
|
/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBHostOS.cpp | 16 #include "lldb/Host/HostThread.h"
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
H A D | Debugger.h | 661 HostThread SetIOHandlerThread(HostThread &new_thread); 731 HostThread m_event_handler_thread; 732 HostThread m_io_handler_thread;
|
H A D | ThreadedCommunication.h | 228 HostThread m_read_thread;
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/posix/ |
H A D | HostProcessPosix.h | 34 llvm::Expected<HostThread>
|
/freebsd/contrib/llvm-project/lldb/source/Host/posix/ |
H A D | HostProcessPosix.cpp | 63 llvm::Expected<HostThread> HostProcessPosix::StartMonitoring( in StartMonitoring()
|
/freebsd/contrib/llvm-project/lldb/include/ |
H A D | module.modulemap | 34 module HostThread { header "lldb/Host/HostThread.h" export * }
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
H A D | GDBRemoteCommunication.h | 223 HostThread m_listen_thread;
|
H A D | ProcessGDBRemote.h | 268 HostThread m_async_thread;
|
H A D | GDBRemoteCommunication.cpp | 847 llvm::Expected<HostThread> listen_thread = ThreadLauncher::LaunchThread( in StartListenThread()
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | Debugger.cpp | 2005 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 D | CommandInterpreter.cpp | 3400 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 D | Process.h | 3060 HostThread m_private_state_thread; ///< Thread ID for the thread that watches
|