/external/llvm-project/lldb/source/Host/common/ |
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 …]
|
D | ThreadLauncher.cpp | 24 llvm::Expected<HostThread> ThreadLauncher::LaunchThread( in LaunchThread() 76 return HostThread(thread); in LaunchThread()
|
D | HostProcess.cpp | 35 llvm::Expected<HostThread>
|
D | MonitoringProcessLauncher.cpp | 56 llvm::Expected<HostThread> maybe_thread = in LaunchProcess()
|
/external/llvm-project/lldb/source/Plugins/Process/Windows/Common/ |
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;
|
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;
|
D | IDebugDelegate.h | 19 class HostThread; variable 33 virtual void OnCreateThread(const HostThread &thread) = 0;
|
D | DebuggerThread.h | 36 HostThread GetMainThread() const { return m_main_thread; } in GetMainThread() 67 HostThread m_main_thread; // The main thread of the inferior.
|
D | ProcessDebugger.h | 26 class HostThread; variable 57 virtual void OnCreateThread(const HostThread &thread);
|
D | DebuggerThread.cpp | 73 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()
|
D | NativeProcessWindows.h | 102 void OnCreateThread(const HostThread &thread) override; 153 void OnCreateThread(const HostThread &thread) override { in OnCreateThread()
|
D | LocalDebugDelegate.h | 49 void OnCreateThread(const HostThread &thread) override;
|
D | LocalDebugDelegate.cpp | 37 void LocalDebugDelegate::OnCreateThread(const HostThread &thread) { in OnCreateThread()
|
/external/llvm-project/lldb/include/lldb/Host/ |
D | HostThread.h | 29 class HostThread { 31 HostThread(); 32 HostThread(lldb::thread_t thread);
|
D | HostProcess.h | 31 class HostThread; variable 45 llvm::Expected<HostThread>
|
D | HostNativeProcessBase.h | 19 class HostThread; variable 40 virtual llvm::Expected<HostThread>
|
D | ThreadLauncher.h | 22 static llvm::Expected<HostThread>
|
/external/llvm-project/lldb/source/API/ |
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()
|
/external/llvm-project/lldb/include/lldb/Host/windows/ |
D | HostProcessWindows.h | 33 virtual llvm::Expected<HostThread>
|
/external/llvm-project/lldb/include/lldb/Host/posix/ |
D | HostProcessPosix.h | 35 llvm::Expected<HostThread>
|
/external/llvm-project/lldb/source/Plugins/Process/FreeBSD/ |
D | ProcessMonitor.h | 186 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/ |
D | GDBRemoteCommunicationReplayServer.h | 73 HostThread m_async_thread;
|
/external/llvm-project/lldb/include/lldb/ |
D | module.modulemap | 34 module HostThread { header "Host/HostThread.h" export * }
|
/external/llvm-project/lldb/source/Host/posix/ |
D | HostProcessPosix.cpp | 90 llvm::Expected<HostThread> HostProcessPosix::StartMonitoring( in StartMonitoring()
|
/external/llvm-project/lldb/source/Host/windows/ |
D | Host.cpp | 197 llvm::Expected<HostThread> Host::StartMonitoringChildProcess( in StartMonitoringChildProcess() 200 return HostThread(); in StartMonitoringChildProcess()
|