Home
last modified time | relevance | path

Searched refs:watch_sp (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectWatchpoint.cpp75 WatchpointSP watch_sp = target->GetLastCreatedWatchpoint(); in VerifyWatchpointIDs() local
76 if (watch_sp) { in VerifyWatchpointIDs()
77 wp_ids.push_back(watch_sp->GetID()); in VerifyWatchpointIDs()
237 WatchpointSP watch_sp = watchpoints.GetByIndex(i); in DoExecute() local
238 AddWatchpointDescription(output_stream, *watch_sp, m_options.m_level); in DoExecute()
252 WatchpointSP watch_sp = watchpoints.FindByID(wp_ids[i]); in DoExecute() local
253 if (watch_sp) in DoExecute()
254 AddWatchpointDescription(output_stream, *watch_sp, m_options.m_level); in DoExecute()
723 WatchpointSP watch_sp = target->GetLastCreatedWatchpoint(); in DoExecute() local
724 watch_sp->SetCondition(m_options.m_condition.c_str()); in DoExecute()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DWatchpoint.cpp160 WatchpointSP watch_sp = in VariableWatchpointDisabler() local
162 if (!watch_sp) in VariableWatchpointDisabler()
169 watch_sp->GetID()); in VariableWatchpointDisabler()
170 process_sp->DisableWatchpoint(watch_sp); in VariableWatchpointDisabler()
176 watch_sp->GetID()); in VariableWatchpointDisabler()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStopInfo.cpp702 WatchpointSP watch_sp) in ThreadPlanStepOverWatchpoint() argument
705 m_stop_info_sp(stop_info_sp), m_watch_sp(watch_sp) { in ThreadPlanStepOverWatchpoint()
706 assert(watch_sp); in ThreadPlanStepOverWatchpoint()