Home
last modified time | relevance | path

Searched refs:IsJoinable (Results 1 – 18 of 18) sorted by relevance

/external/llvm-project/lldb/source/Host/posix/
DHostThreadPosix.cpp27 if (IsJoinable()) { in Join()
42 if (IsJoinable()) { in Cancel()
55 if (IsJoinable()) { in Detach()
/external/llvm-project/lldb/source/Host/common/
DHostThread.cpp30 bool HostThread::IsJoinable() const { return m_native_thread->IsJoinable(); } in IsJoinable() function in HostThread
DHostNativeThreadBase.cpp34 bool HostNativeThreadBase::IsJoinable() const { in IsJoinable() function in HostNativeThreadBase
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DGDBRemoteCommunicationReplayServer.cpp211 if (!m_async_thread.IsJoinable()) { in StartAsyncThread()
229 return m_async_thread.IsJoinable(); in StartAsyncThread()
235 if (!m_async_thread.IsJoinable()) in StopAsyncThread()
DGDBRemoteCommunication.cpp863 if (m_listen_thread.IsJoinable()) in StartListenThread()
883 if (m_listen_thread.IsJoinable()) in JoinListenThread()
DProcessGDBRemote.cpp1441 if (!m_async_thread.IsJoinable()) { in DoResume()
3589 if (!m_async_thread.IsJoinable()) { in StartAsyncThread()
3608 return m_async_thread.IsJoinable(); in StartAsyncThread()
3617 if (m_async_thread.IsJoinable()) { in StopAsyncThread()
/external/llvm-project/lldb/source/Core/
DCommunication.cpp196 if (m_read_thread.IsJoinable()) in StartReadThread()
221 if (!m_read_thread.IsJoinable()) in StartReadThread()
228 if (!m_read_thread.IsJoinable()) in StopReadThread()
245 if (!m_read_thread.IsJoinable()) in JoinReadThread()
DDebugger.cpp1494 if (!m_event_handler_thread.IsJoinable()) { in StartEventHandlerThread()
1530 return m_event_handler_thread.IsJoinable(); in StartEventHandlerThread()
1534 if (m_event_handler_thread.IsJoinable()) { in StopEventHandlerThread()
1548 bool Debugger::HasIOHandlerThread() { return m_io_handler_thread.IsJoinable(); } in HasIOHandlerThread()
1551 if (!m_io_handler_thread.IsJoinable()) { in StartIOHandlerThread()
1563 return m_io_handler_thread.IsJoinable(); in StartIOHandlerThread()
1567 if (m_io_handler_thread.IsJoinable()) { in StopIOHandlerThread()
/external/libchrome/base/threading/
Dwatchdog.cc64 if (!IsJoinable()) in ~Watchdog()
77 bool Watchdog::IsJoinable() { in IsJoinable() function in base::Watchdog
Dwatchdog.h46 bool IsJoinable();
/external/llvm-project/lldb/include/lldb/Host/
DHostThread.h39 bool IsJoinable() const;
DHostNativeThreadBase.h36 virtual bool IsJoinable() const;
/external/llvm-project/lldb/source/Host/windows/
DHostThreadWindows.cpp37 if (IsJoinable()) { in Join()
/external/llvm-project/lldb/source/Plugins/Process/MacOSX-Kernel/
DProcessKDP.cpp424 if (!m_async_thread.IsJoinable()) in DoResume()
741 if (m_async_thread.IsJoinable()) in StartAsyncThread()
753 return m_async_thread.IsJoinable(); in StartAsyncThread()
764 if (m_async_thread.IsJoinable()) in StopAsyncThread()
/external/llvm-project/lldb/source/Plugins/Process/FreeBSD/
DProcessMonitor.cpp737 if (!monitor_thread || !monitor_thread->IsJoinable()) { in ProcessMonitor()
777 if (!monitor_thread || !monitor_thread->IsJoinable()) { in ProcessMonitor()
791 if (m_operation_thread && m_operation_thread->IsJoinable()) in StartLaunchOpThread()
958 if (m_operation_thread && m_operation_thread->IsJoinable()) in StartAttachOpThread()
1381 if (m_monitor_thread && m_monitor_thread->IsJoinable()) { in StopMonitoringChildProcess()
1419 if (m_operation_thread && m_operation_thread->IsJoinable()) { in StopOpThread()
/external/llvm-project/lldb/include/lldb/Core/
DDebugger.h330 bool IsHandlingEvents() const { return m_event_handler_thread.IsJoinable(); } in IsHandlingEvents()
/external/llvm-project/lldb/source/Target/
DProcess.cpp3648 assert(private_state_thread->IsJoinable()); in StartPrivateStateThread()
3663 if (m_private_state_thread.IsJoinable()) in StopPrivateStateThread()
3683 if (m_private_state_thread.IsJoinable()) { in ControlPrivateStateThread()
5341 if (backup_private_state_thread.IsJoinable()) { in RunThreadPlan()
/external/llvm-project/lldb/include/lldb/Target/
DProcess.h2672 state != lldb::eStateExited && m_private_state_thread.IsJoinable(); in PrivateStateThreadIsValid()