Home
last modified time | relevance | path

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

12

/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/
H A DTargetThreadWindows.h21 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 DNativeThreadWindows.h24 NativeThreadWindows(NativeProcessWindows &process, const HostThread &thread);
53 const HostThread &GetHostThread() { return m_host_thread; } in GetHostThread()
66 HostThread m_host_thread;
H A DIDebugDelegate.h19 class HostThread; variable
33 virtual void OnCreateThread(const HostThread &thread) = 0;
H A DDebuggerThread.h36 HostThread GetMainThread() const { return m_main_thread; } in GetMainThread()
67 HostThread m_main_thread; // The main thread of the inferior.
H A DProcessDebugger.h26 class HostThread; variable
57 virtual void OnCreateThread(const HostThread &thread);
H A DDebuggerThread.cpp56 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 DNativeProcessWindows.h102 void OnCreateThread(const HostThread &thread) override;
158 void OnCreateThread(const HostThread &thread) override { in OnCreateThread()
H A DLocalDebugDelegate.h49 void OnCreateThread(const HostThread &thread) override;
H A DLocalDebugDelegate.cpp37 void LocalDebugDelegate::OnCreateThread(const HostThread &thread) { in OnCreateThread()
/openbsd-src/gnu/llvm/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>
/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBHostOS.cpp104 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 DHostProcessWindows.h32 virtual llvm::Expected<HostThread>
/openbsd-src/gnu/llvm/lldb/include/lldb/Host/posix/
H A DHostProcessPosix.h34 llvm::Expected<HostThread>
/openbsd-src/gnu/llvm/lldb/source/Host/posix/
H A DHostProcessPosix.cpp63 llvm::Expected<HostThread> HostProcessPosix::StartMonitoring( in StartMonitoring()
/openbsd-src/gnu/usr.bin/clang/liblldbHostCommon/
H A DMakefile19 HostThread.cpp \
/openbsd-src/gnu/llvm/lldb/include/lldb/
H A Dmodule.modulemap34 module HostThread { header "Host/HostThread.h" export * }
/openbsd-src/gnu/llvm/lldb/source/Host/windows/
H A DHostProcessWindows.cpp78 llvm::Expected<HostThread> HostProcessWindows::StartMonitoring( in StartMonitoring()
H A DHost.cpp197 llvm::Expected<HostThread> Host::StartMonitoringChildProcess( in StartMonitoringChildProcess()
199 return HostThread(); in StartMonitoringChildProcess()

12