Searched refs:matched_sp (Results 1 – 1 of 1) sorted by relevance
1000 WatchpointSP matched_sp = m_watchpoint_list.FindByAddress(addr); in CreateWatchpoint() local1001 if (matched_sp) { in CreateWatchpoint()1002 size_t old_size = matched_sp->GetByteSize(); in CreateWatchpoint()1004 (matched_sp->WatchpointRead() ? LLDB_WATCH_TYPE_READ : 0) | in CreateWatchpoint()1005 (matched_sp->WatchpointWrite() ? LLDB_WATCH_TYPE_WRITE : 0) | in CreateWatchpoint()1006 (matched_sp->WatchpointModify() ? LLDB_WATCH_TYPE_MODIFY : 0); in CreateWatchpoint()1009 wp_sp = matched_sp; in CreateWatchpoint()1013 m_process_sp->DisableWatchpoint(matched_sp, notify); in CreateWatchpoint()1014 m_watchpoint_list.Remove(matched_sp->GetID(), true); in CreateWatchpoint()