Searched defs:matched_sp (Results 1 - 1 of 1) sorted by relevance

/external/lldb/source/Target/
H A DTarget.cpp589 WatchpointSP matched_sp = m_watchpoint_list.FindByAddress(addr); local
590 if (matched_sp)
592 size_t old_size = matched_sp->GetByteSize();
594 (matched_sp->WatchpointRead() ? LLDB_WATCH_TYPE_READ : 0) |
595 (matched_sp->WatchpointWrite() ? LLDB_WATCH_TYPE_WRITE : 0);
599 wp_sp = matched_sp;
605 m_process_sp->DisableWatchpoint(matched_sp.get(), notify);
606 m_watchpoint_list.Remove(matched_sp->GetID(), true);

Completed in 146 milliseconds