Home
last modified time | relevance | path

Searched refs:NativeThreadOpenBSD (Results 1 – 6 of 6) sorted by relevance

/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/OpenBSD/
H A DNativeThreadOpenBSD.cpp27 NativeThreadOpenBSD::NativeThreadOpenBSD(NativeProcessOpenBSD &process, in NativeThreadOpenBSD() function in NativeThreadOpenBSD
36 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 …]
H A DNativeThreadOpenBSD.h24 class NativeThreadOpenBSD : public NativeThreadProtocol {
28 NativeThreadOpenBSD(NativeProcessOpenBSD &process, lldb::tid_t tid);
75 typedef std::shared_ptr<NativeThreadOpenBSD> NativeThreadOpenBSDSP;
H A DNativeProcessOpenBSD.cpp113 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()
H A DCMakeLists.txt7 NativeThreadOpenBSD.cpp
H A DNativeProcessOpenBSD.h107 NativeThreadOpenBSD &AddThread(lldb::tid_t thread_id);
/openbsd-src/gnu/usr.bin/clang/liblldbPluginProcess/
H A DMakefile15 NativeThreadOpenBSD.cpp