Home
last modified time | relevance | path

Searched refs:CreateRegisterContextForFrame (Results 1 – 19 of 19) sorted by relevance

/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/minidump/
DThreadMinidump.cpp47 m_reg_context_sp = CreateRegisterContextForFrame(nullptr); in GetRegisterContext()
53 ThreadMinidump::CreateRegisterContextForFrame(StackFrame *frame) { in CreateRegisterContextForFrame() function in ThreadMinidump
112 reg_ctx_sp = m_unwinder_up->CreateRegisterContextForFrame(frame); in CreateRegisterContextForFrame()
DThreadMinidump.h33 CreateRegisterContextForFrame(StackFrame *frame) override;
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/mach-core/
DThreadMachCore.cpp65 m_reg_context_sp = CreateRegisterContextForFrame(nullptr); in GetRegisterContext()
70 ThreadMachCore::CreateRegisterContextForFrame(StackFrame *frame) { in CreateRegisterContextForFrame() function in ThreadMachCore
89 reg_ctx_sp = GetUnwinder().CreateRegisterContextForFrame(frame); in CreateRegisterContextForFrame()
DThreadMachCore.h31 CreateRegisterContextForFrame(lldb_private::StackFrame *frame) override;
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/MacOSX-Kernel/
DThreadKDP.cpp82 m_reg_context_sp = CreateRegisterContextForFrame(nullptr); in GetRegisterContext()
87 ThreadKDP::CreateRegisterContextForFrame(StackFrame *frame) { in CreateRegisterContextForFrame() function in ThreadKDP
121 reg_ctx_sp = GetUnwinder().CreateRegisterContextForFrame(frame); in CreateRegisterContextForFrame()
DThreadKDP.h34 CreateRegisterContextForFrame(lldb_private::StackFrame *frame) override;
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/
DTargetThreadWindows.cpp55 m_reg_context_sp = CreateRegisterContextForFrame(nullptr); in GetRegisterContext()
61 TargetThreadWindows::CreateRegisterContextForFrame(StackFrame *frame) { in CreateRegisterContextForFrame() function in TargetThreadWindows
116 reg_ctx_sp = GetUnwinder().CreateRegisterContextForFrame(frame); in CreateRegisterContextForFrame()
DTargetThreadWindows.h35 CreateRegisterContextForFrame(StackFrame *frame) override;
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/Utility/
DHistoryThread.cpp60 HistoryThread::CreateRegisterContextForFrame(StackFrame *frame) { in CreateRegisterContextForFrame() function in HistoryThread
61 return m_unwinder_up->CreateRegisterContextForFrame(frame); in CreateRegisterContextForFrame()
DThreadMemory.cpp57 ThreadMemory::CreateRegisterContextForFrame(StackFrame *frame) { in CreateRegisterContextForFrame() function in ThreadMemory
65 return GetUnwinder().CreateRegisterContextForFrame(frame); in CreateRegisterContextForFrame()
DHistoryThread.h44 CreateRegisterContextForFrame(StackFrame *frame) override;
DThreadMemory.h30 CreateRegisterContextForFrame(lldb_private::StackFrame *frame) override;
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
DThreadGDBRemote.cpp295 m_reg_context_sp = CreateRegisterContextForFrame(nullptr); in GetRegisterContext()
300 ThreadGDBRemote::CreateRegisterContextForFrame(StackFrame *frame) { in CreateRegisterContextForFrame() function in ThreadGDBRemote
322 reg_ctx_sp = GetUnwinder().CreateRegisterContextForFrame(frame); in CreateRegisterContextForFrame()
DThreadGDBRemote.h57 CreateRegisterContextForFrame(StackFrame *frame) override;
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/elf-core/
DThreadElfCore.cpp59 m_reg_context_sp = CreateRegisterContextForFrame(nullptr); in GetRegisterContext()
65 ThreadElfCore::CreateRegisterContextForFrame(StackFrame *frame) { in CreateRegisterContextForFrame() function in ThreadElfCore
217 reg_ctx_sp = GetUnwinder().CreateRegisterContextForFrame(frame); in CreateRegisterContextForFrame()
DThreadElfCore.h146 CreateRegisterContextForFrame(lldb_private::StackFrame *frame) override;
/openbsd/src/gnu/llvm/lldb/include/lldb/Target/
DUnwind.h56 lldb::RegisterContextSP CreateRegisterContextForFrame(StackFrame *frame) { in CreateRegisterContextForFrame() function
DThread.h452 CreateRegisterContextForFrame(StackFrame *frame) = 0;
/openbsd/src/gnu/llvm/lldb/source/Target/
DStackFrame.cpp1148 m_reg_context_sp = thread_sp->CreateRegisterContextForFrame(this); in GetRegisterContext()