| /freebsd-13.1/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> ThreadLauncher::LaunchThread( in LaunchThread() 76 return HostThread(thread); in LaunchThread()
|
| H A D | HostProcess.cpp | 35 llvm::Expected<HostThread>
|
| H A D | MonitoringProcessLauncher.cpp | 56 llvm::Expected<HostThread> maybe_thread = in LaunchProcess()
|
| H A D | ProcessLaunchInfo.cpp | 194 llvm::Expected<HostThread> maybe_thread = in MonitorProcess()
|
| H A D | Host.cpp | 103 llvm::Expected<HostThread> Host::StartMonitoringChildProcess( in StartMonitoringChildProcess()
|
| /freebsd-13.1/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 45 llvm::Expected<HostThread>
|
| H A D | HostNativeProcessBase.h | 19 class HostThread; variable 40 virtual llvm::Expected<HostThread>
|
| H A D | ThreadLauncher.h | 22 static llvm::Expected<HostThread>
|
| H A D | Host.h | 102 static llvm::Expected<HostThread>
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/API/ |
| H A D | SBHostOS.cpp | 110 llvm::Expected<HostThread> thread = in ThreadCreate() 134 HostThread host_thread(thread); in ThreadCancel() 152 HostThread host_thread(thread); in ThreadDetach() 169 HostThread host_thread(thread); in ThreadJoin()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Host/posix/ |
| H A D | HostProcessPosix.h | 35 llvm::Expected<HostThread>
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | GDBRemoteCommunicationReplayServer.h | 73 HostThread m_async_thread;
|
| H A D | GDBRemoteCommunication.h | 221 HostThread m_listen_thread;
|
| H A D | GDBRemoteCommunicationReplayServer.cpp | 214 llvm::Expected<HostThread> async_thread = ThreadLauncher::LaunchThread( in StartAsyncThread()
|
| H A D | ProcessGDBRemote.h | 258 HostThread m_async_thread;
|
| H A D | GDBRemoteCommunication.cpp | 873 llvm::Expected<HostThread> listen_thread = ThreadLauncher::LaunchThread( in StartListenThread()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/ |
| H A D | module.modulemap | 34 module HostThread { header "Host/HostThread.h" export * }
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Host/posix/ |
| H A D | HostProcessPosix.cpp | 90 llvm::Expected<HostThread> HostProcessPosix::StartMonitoring( in StartMonitoring()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | Communication.h | 303 HostThread m_read_thread; ///< The read thread handle in case we need to
|
| H A D | Debugger.h | 511 HostThread m_event_handler_thread; 512 HostThread m_io_handler_thread;
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Core/ |
| H A D | Debugger.cpp | 1585 llvm::Expected<HostThread> event_handler_thread = in StartEventHandlerThread() 1627 llvm::Expected<HostThread> io_handler_thread = ThreadLauncher::LaunchThread( in StartIOHandlerThread()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | Process.h | 2862 HostThread m_private_state_thread; ///< Thread ID for the thread that watches
|
| /freebsd-13.1/lib/clang/liblldb/ |
| H A D | Makefile | 234 SRCS+= Host/common/HostThread.cpp
|