Home
last modified time | relevance | path

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

12

/freebsd-13.1/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> ThreadLauncher::LaunchThread( in LaunchThread()
76 return HostThread(thread); in LaunchThread()
H A DHostProcess.cpp35 llvm::Expected<HostThread>
H A DMonitoringProcessLauncher.cpp56 llvm::Expected<HostThread> maybe_thread = in LaunchProcess()
H A DProcessLaunchInfo.cpp194 llvm::Expected<HostThread> maybe_thread = in MonitorProcess()
H A DHost.cpp103 llvm::Expected<HostThread> Host::StartMonitoringChildProcess( in StartMonitoringChildProcess()
/freebsd-13.1/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
45 llvm::Expected<HostThread>
H A DHostNativeProcessBase.h19 class HostThread; variable
40 virtual llvm::Expected<HostThread>
H A DThreadLauncher.h22 static llvm::Expected<HostThread>
H A DHost.h102 static llvm::Expected<HostThread>
/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A DSBHostOS.cpp110 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 DHostProcessPosix.h35 llvm::Expected<HostThread>
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationReplayServer.h73 HostThread m_async_thread;
H A DGDBRemoteCommunication.h221 HostThread m_listen_thread;
H A DGDBRemoteCommunicationReplayServer.cpp214 llvm::Expected<HostThread> async_thread = ThreadLauncher::LaunchThread( in StartAsyncThread()
H A DProcessGDBRemote.h258 HostThread m_async_thread;
H A DGDBRemoteCommunication.cpp873 llvm::Expected<HostThread> listen_thread = ThreadLauncher::LaunchThread( in StartListenThread()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/
H A Dmodule.modulemap34 module HostThread { header "Host/HostThread.h" export * }
/freebsd-13.1/contrib/llvm-project/lldb/source/Host/posix/
H A DHostProcessPosix.cpp90 llvm::Expected<HostThread> HostProcessPosix::StartMonitoring( in StartMonitoring()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/
H A DCommunication.h303 HostThread m_read_thread; ///< The read thread handle in case we need to
H A DDebugger.h511 HostThread m_event_handler_thread;
512 HostThread m_io_handler_thread;
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DDebugger.cpp1585 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 DProcess.h2862 HostThread m_private_state_thread; ///< Thread ID for the thread that watches
/freebsd-13.1/lib/clang/liblldb/
H A DMakefile234 SRCS+= Host/common/HostThread.cpp

12