Home
last modified time | relevance | path

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

12

/external/llvm-project/lldb/source/Host/common/
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 …]
DThreadLauncher.cpp24 llvm::Expected<HostThread> ThreadLauncher::LaunchThread( in LaunchThread()
76 return HostThread(thread); in LaunchThread()
DHostProcess.cpp35 llvm::Expected<HostThread>
DMonitoringProcessLauncher.cpp56 llvm::Expected<HostThread> maybe_thread = in LaunchProcess()
/external/llvm-project/lldb/source/Plugins/Process/Windows/Common/
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;
DNativeThreadWindows.h24 NativeThreadWindows(NativeProcessWindows &process, const HostThread &thread);
53 const HostThread &GetHostThread() { return m_host_thread; } in GetHostThread()
66 HostThread m_host_thread;
DIDebugDelegate.h19 class HostThread; variable
33 virtual void OnCreateThread(const HostThread &thread) = 0;
DDebuggerThread.h36 HostThread GetMainThread() const { return m_main_thread; } in GetMainThread()
67 HostThread m_main_thread; // The main thread of the inferior.
DProcessDebugger.h26 class HostThread; variable
57 virtual void OnCreateThread(const HostThread &thread);
DDebuggerThread.cpp73 llvm::Expected<HostThread> secondary_thread = in DebugLaunch()
92 llvm::Expected<HostThread> secondary_thread = in DebugAttach()
260 m_main_thread = HostThread(); in FreeProcessHandles()
397 HostThread thread(info.hThread); in HandleCreateThreadEvent()
422 m_main_thread = HostThread(info.hThread); in HandleCreateProcessEvent()
DNativeProcessWindows.h102 void OnCreateThread(const HostThread &thread) override;
153 void OnCreateThread(const HostThread &thread) override { in OnCreateThread()
DLocalDebugDelegate.h49 void OnCreateThread(const HostThread &thread) override;
DLocalDebugDelegate.cpp37 void LocalDebugDelegate::OnCreateThread(const HostThread &thread) { in OnCreateThread()
/external/llvm-project/lldb/include/lldb/Host/
DHostThread.h29 class HostThread {
31 HostThread();
32 HostThread(lldb::thread_t thread);
DHostProcess.h31 class HostThread; variable
45 llvm::Expected<HostThread>
DHostNativeProcessBase.h19 class HostThread; variable
40 virtual llvm::Expected<HostThread>
DThreadLauncher.h22 static llvm::Expected<HostThread>
/external/llvm-project/lldb/source/API/
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()
/external/llvm-project/lldb/include/lldb/Host/windows/
DHostProcessWindows.h33 virtual llvm::Expected<HostThread>
/external/llvm-project/lldb/include/lldb/Host/posix/
DHostProcessPosix.h35 llvm::Expected<HostThread>
/external/llvm-project/lldb/source/Plugins/Process/FreeBSD/
DProcessMonitor.h186 llvm::Optional<lldb_private::HostThread> m_operation_thread;
187 llvm::Optional<lldb_private::HostThread> m_monitor_thread;
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DGDBRemoteCommunicationReplayServer.h73 HostThread m_async_thread;
/external/llvm-project/lldb/include/lldb/
Dmodule.modulemap34 module HostThread { header "Host/HostThread.h" export * }
/external/llvm-project/lldb/source/Host/posix/
DHostProcessPosix.cpp90 llvm::Expected<HostThread> HostProcessPosix::StartMonitoring( in StartMonitoring()
/external/llvm-project/lldb/source/Host/windows/
DHost.cpp197 llvm::Expected<HostThread> Host::StartMonitoringChildProcess( in StartMonitoringChildProcess()
200 return HostThread(); in StartMonitoringChildProcess()

12