| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/ |
| H A D | TargetThreadWindows.h | 21 class HostThread; variable 26 TargetThreadWindows(ProcessWindows &process, const HostThread &thread); 40 HostThread GetHostThread() const { return m_host_thread; } in GetHostThread() 44 HostThread m_host_thread;
|
| H A D | NativeThreadWindows.h | 24 NativeThreadWindows(NativeProcessWindows &process, const HostThread &thread); 53 const HostThread &GetHostThread() { return m_host_thread; } in GetHostThread() 66 HostThread m_host_thread;
|
| H A D | IDebugDelegate.h | 19 class HostThread; variable 33 virtual void OnCreateThread(const HostThread &thread) = 0;
|
| H A D | DebuggerThread.h | 36 HostThread GetMainThread() const { return m_main_thread; } in GetMainThread() 67 HostThread m_main_thread; // The main thread of the inferior.
|
| H A D | ProcessDebugger.h | 26 class HostThread; variable 57 virtual void OnCreateThread(const HostThread &thread);
|
| H A D | DebuggerThread.cpp | 56 llvm::Expected<HostThread> secondary_thread = ThreadLauncher::LaunchThread( in DebugLaunch() 73 llvm::Expected<HostThread> secondary_thread = ThreadLauncher::LaunchThread( in DebugAttach() 225 m_main_thread = HostThread(); in FreeProcessHandles() 360 HostThread thread(info.hThread); in HandleCreateThreadEvent() 384 m_main_thread = HostThread(info.hThread); in HandleCreateProcessEvent()
|
| H A D | NativeProcessWindows.h | 102 void OnCreateThread(const HostThread &thread) override; 158 void OnCreateThread(const HostThread &thread) override { in OnCreateThread()
|
| H A D | LocalDebugDelegate.h | 49 void OnCreateThread(const HostThread &thread) override;
|
| H A D | LocalDebugDelegate.cpp | 37 void LocalDebugDelegate::OnCreateThread(const HostThread &thread) { in OnCreateThread()
|
| /openbsd-src/gnu/llvm/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>
|
| /openbsd-src/gnu/llvm/lldb/source/API/ |
| H A D | SBHostOS.cpp | 104 llvm::Expected<HostThread> thread = in ThreadCreate() 125 HostThread host_thread(thread); in ThreadCancel() 141 HostThread host_thread(thread); in ThreadDetach() 155 HostThread host_thread(thread); in ThreadJoin()
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Host/windows/ |
| H A D | HostProcessWindows.h | 32 virtual llvm::Expected<HostThread>
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Host/posix/ |
| H A D | HostProcessPosix.h | 34 llvm::Expected<HostThread>
|
| /openbsd-src/gnu/llvm/lldb/source/Host/posix/ |
| H A D | HostProcessPosix.cpp | 63 llvm::Expected<HostThread> HostProcessPosix::StartMonitoring( in StartMonitoring()
|
| /openbsd-src/gnu/usr.bin/clang/liblldbHostCommon/ |
| H A D | Makefile | 19 HostThread.cpp \
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/ |
| H A D | module.modulemap | 34 module HostThread { header "Host/HostThread.h" export * }
|
| /openbsd-src/gnu/llvm/lldb/source/Host/windows/ |
| H A D | HostProcessWindows.cpp | 78 llvm::Expected<HostThread> HostProcessWindows::StartMonitoring( in StartMonitoring()
|
| H A D | Host.cpp | 197 llvm::Expected<HostThread> Host::StartMonitoringChildProcess( in StartMonitoringChildProcess() 199 return HostThread(); in StartMonitoringChildProcess()
|