Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
DItaniumABILanguageRuntime.cpp497 if (m_cxx_exception_bp_sp) { in SetExceptionBreakpoints()
498 m_cxx_exception_bp_sp->SetEnabled(true); in SetExceptionBreakpoints()
500 m_cxx_exception_bp_sp = CreateExceptionBreakpoint( in SetExceptionBreakpoints()
502 if (m_cxx_exception_bp_sp) in SetExceptionBreakpoints()
503 m_cxx_exception_bp_sp->SetBreakpointKind("c++ exception"); in SetExceptionBreakpoints()
511 if (m_cxx_exception_bp_sp) { in ClearExceptionBreakpoints()
512 m_cxx_exception_bp_sp->SetEnabled(false); in ClearExceptionBreakpoints()
517 return m_cxx_exception_bp_sp && m_cxx_exception_bp_sp->IsEnabled(); in ExceptionBreakpointsAreSet()
530 break_site_id, m_cxx_exception_bp_sp->GetID()); in ExceptionBreakpointsExplainStop()
DItaniumABILanguageRuntime.h97 lldb_private::CPPLanguageRuntime(process), m_cxx_exception_bp_sp(), in ItaniumABILanguageRuntime()
100 lldb::BreakpointSP m_cxx_exception_bp_sp; variable