Searched refs:NativeThreadOpenBSD (Results 1 – 6 of 6) sorted by relevance
27 NativeThreadOpenBSD::NativeThreadOpenBSD(NativeProcessOpenBSD &process, in NativeThreadOpenBSD() function in NativeThreadOpenBSD36 void NativeThreadOpenBSD::SetStoppedBySignal(uint32_t signo, in SetStoppedBySignal()60 void NativeThreadOpenBSD::SetStoppedByBreakpoint() { in SetStoppedByBreakpoint()66 void NativeThreadOpenBSD::SetStoppedByTrace() { in SetStoppedByTrace()72 void NativeThreadOpenBSD::SetStoppedByExec() { in SetStoppedByExec()78 void NativeThreadOpenBSD::SetStopped() { in SetStopped()84 void NativeThreadOpenBSD::SetRunning() { in SetRunning()89 void NativeThreadOpenBSD::SetStepping() { in SetStepping()94 std::string NativeThreadOpenBSD::GetName() { return std::string(""); } in GetName()96 lldb::StateType NativeThreadOpenBSD::GetState() { return m_state; } in GetState()[all …]
24 class NativeThreadOpenBSD : public NativeThreadProtocol {28 NativeThreadOpenBSD(NativeProcessOpenBSD &process, lldb::tid_t tid);75 typedef std::shared_ptr<NativeThreadOpenBSD> NativeThreadOpenBSDSP;
113 static_cast<NativeThreadOpenBSD &>(*thread).SetStoppedBySignal(SIGSTOP); in Launch()197 static_cast<NativeThreadOpenBSD &>(*thread).SetStoppedByBreakpoint(); in MonitorSIGTRAP()198 FixupBreakpointPCAsNeeded(static_cast<NativeThreadOpenBSD &>(*thread)); in MonitorSIGTRAP()206 static_cast<NativeThreadOpenBSD &>(*thread).SetStoppedBySignal(signal); in MonitorSignal()259 static_cast<NativeThreadOpenBSD &>(*thread).SetRunning(); in Resume()271 static_cast<NativeThreadOpenBSD &>(*thread).SetStepping(); in Resume()448 NativeThreadOpenBSD &NativeProcessOpenBSD::AddThread(lldb::tid_t thread_id) { in AddThread()460 m_threads.push_back(std::make_unique<NativeThreadOpenBSD>(*this, thread_id)); in AddThread()461 return static_cast<NativeThreadOpenBSD &>(*m_threads.back()); in AddThread()482 static_cast<NativeThreadOpenBSD &>(*thread).SetStoppedBySignal(SIGSTOP); in Attach()
7 NativeThreadOpenBSD.cpp
107 NativeThreadOpenBSD &AddThread(lldb::tid_t thread_id);
15 NativeThreadOpenBSD.cpp