Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp264 m_addr_to_mmap_size(), m_thread_create_bp_sp(), in ProcessGDBRemote()
3795 if (m_thread_create_bp_sp) { in StartNoticingNewThreads()
3798 m_thread_create_bp_sp->SetEnabled(true); in StartNoticingNewThreads()
3802 m_thread_create_bp_sp = in StartNoticingNewThreads()
3804 if (m_thread_create_bp_sp) { in StartNoticingNewThreads()
3808 m_thread_create_bp_sp->GetID()); in StartNoticingNewThreads()
3809 m_thread_create_bp_sp->SetCallback( in StartNoticingNewThreads()
3816 return m_thread_create_bp_sp.get() != nullptr; in StartNoticingNewThreads()
3824 if (m_thread_create_bp_sp) in StopNoticingNewThreads()
3825 m_thread_create_bp_sp->SetEnabled(false); in StopNoticingNewThreads()
H A DProcessGDBRemote.h292 lldb::BreakpointSP m_thread_create_bp_sp; variable