Home
last modified time | relevance | path

Searched refs:ThreadMemory (Results 1 – 4 of 4) sorted by relevance

/external/llvm-project/lldb/source/Plugins/Process/Utility/
DThreadMemory.cpp23 ThreadMemory::ThreadMemory(Process &process, tid_t tid, in ThreadMemory() function in ThreadMemory
28 ThreadMemory::ThreadMemory(Process &process, lldb::tid_t tid, in ThreadMemory() function in ThreadMemory
35 ThreadMemory::~ThreadMemory() { DestroyThread(); } in ~ThreadMemory()
37 void ThreadMemory::WillResume(StateType resume_state) { in WillResume()
42 void ThreadMemory::ClearStackFrames() { in ClearStackFrames()
48 RegisterContextSP ThreadMemory::GetRegisterContext() { in GetRegisterContext()
56 ThreadMemory::CreateRegisterContextForFrame(StackFrame *frame) { in CreateRegisterContextForFrame()
67 bool ThreadMemory::CalculateStopInfo() { in CalculateStopInfo()
91 void ThreadMemory::RefreshStateAfterStop() { in RefreshStateAfterStop()
DThreadMemory.h16 class ThreadMemory : public lldb_private::Thread {
18 ThreadMemory(lldb_private::Process &process, lldb::tid_t tid,
21 ThreadMemory(lldb_private::Process &process, lldb::tid_t tid,
25 ~ThreadMemory() override;
103 ThreadMemory(const ThreadMemory &) = delete;
104 const ThreadMemory &operator=(const ThreadMemory &) = delete;
DCMakeLists.txt53 ThreadMemory.cpp
/external/llvm-project/lldb/source/Plugins/OperatingSystem/Python/
DOperatingSystemPython.cpp265 thread_sp = std::make_shared<ThreadMemory>(*m_process, tid, name, queue, in CreateThreadFromThreadInfo()