Searched refs:matched_sp (Results 1 - 1 of 1) sorted by last modified time

/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp816 WatchpointSP matched_sp = m_watchpoint_list.FindByAddress(addr); local
817 if (matched_sp) {
818 size_t old_size = matched_sp->GetByteSize();
820 (matched_sp->WatchpointRead() ? LLDB_WATCH_TYPE_READ : 0) |
821 (matched_sp->WatchpointWrite() ? LLDB_WATCH_TYPE_WRITE : 0);
824 wp_sp = matched_sp;
828 m_process_sp->DisableWatchpoint(matched_sp.get(), notify);
829 m_watchpoint_list.Remove(matched_sp->GetID(), true);

Completed in 71 milliseconds