Lines Matching defs:watch_sp
73 WatchpointSP watch_sp = target.GetLastCreatedWatchpoint();
74 if (watch_sp) {
75 wp_ids.push_back(watch_sp->GetID());
237 WatchpointSP watch_sp = watchpoints.GetByIndex(i);
238 AddWatchpointDescription(output_stream, *watch_sp, m_options.m_level);
252 WatchpointSP watch_sp = watchpoints.FindByID(wp_ids[i]);
253 if (watch_sp)
254 AddWatchpointDescription(output_stream, *watch_sp, m_options.m_level);
723 WatchpointSP watch_sp = target.GetLastCreatedWatchpoint();
724 watch_sp->SetCondition(m_options.m_condition.c_str());
738 WatchpointSP watch_sp = watchpoints.FindByID(wp_ids[i]);
739 if (watch_sp) {
740 watch_sp->SetCondition(m_options.m_condition.c_str());
906 WatchpointSP watch_sp =
908 if (!watch_sp) {
918 watch_sp->SetWatchSpec(command.GetArgumentAtIndex(0));
919 watch_sp->SetWatchVariable(true);
925 watch_sp->SetDeclInfo(std::string(ss.GetString()));
928 watch_sp->SetupVariableWatchpointDisabler(m_exe_ctx.GetFrameSP());
931 watch_sp->GetDescription(&output_stream, lldb::eDescriptionLevelFull);
1097 WatchpointSP watch_sp =
1099 if (watch_sp) {
1100 watch_sp->SetWatchSpec(std::string(expr));
1103 watch_sp->GetDescription(&output_stream, lldb::eDescriptionLevelFull);