Home
last modified time | relevance | path

Searched refs:m_active_exception (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DProcessMinidump.cpp160 m_core_data(std::move(core_data)), m_active_exception(nullptr), in ProcessMinidump()
212 m_active_exception = m_minidump_parser->GetExceptionStream(); in DoLoadCore()
235 if (!m_active_exception) in RefreshStateAfterStop()
239 if (m_active_exception->ExceptionRecord.ExceptionCode == in RefreshStateAfterStop()
256 Process::m_thread_list.SetSelectedThreadByID(m_active_exception->ThreadId); in RefreshStateAfterStop()
261 uint32_t signo = m_active_exception->ExceptionRecord.ExceptionCode; in RefreshStateAfterStop()
272 *stop_thread, m_active_exception->ExceptionRecord.ExceptionCode, 2, in RefreshStateAfterStop()
273 m_active_exception->ExceptionRecord.ExceptionFlags, in RefreshStateAfterStop()
274 m_active_exception->ExceptionRecord.ExceptionAddress, 0); in RefreshStateAfterStop()
280 m_active_exception->ExceptionRecord.ExceptionCode, 8) in RefreshStateAfterStop()
[all …]
H A DProcessMinidump.h112 const minidump::ExceptionStream *m_active_exception; variable