Home
last modified time | relevance | path

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

/freebsd-14.2/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()
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()
390 if (m_active_exception != nullptr && in DoUpdateThreadList()
391 m_active_exception->ThreadId == thread.ThreadId) { in DoUpdateThreadList()
[all …]
H A DProcessMinidump.h113 const minidump::ExceptionStream *m_active_exception; variable