Home
last modified time | relevance | path

Searched refs:watchpoint_sp (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBWatchpoint.cpp55 if (watchpoint_sp) in GetID()
88 if (watchpoint_sp) { in GetError()
110 if (watchpoint_sp) { in GetWatchAddress()
125 if (watchpoint_sp) { in GetWatchSize()
138 if (watchpoint_sp) { in SetEnabled()
158 if (watchpoint_sp) { in IsEnabled()
171 if (watchpoint_sp) { in GetHitCount()
184 if (watchpoint_sp) { in GetIgnoreCount()
196 if (watchpoint_sp) { in SetIgnoreCount()
207 if (!watchpoint_sp) in GetCondition()
[all …]
H A DSBValue.cpp1455 WatchpointSP watchpoint_sp = in Watch() local
1459 if (watchpoint_sp) { in Watch()
1460 sb_watchpoint.SetSP(watchpoint_sp); in Watch()
1467 watchpoint_sp->SetDeclInfo(std::string(ss.GetString())); in Watch()
H A DSBTarget.cpp1311 lldb::WatchpointSP watchpoint_sp; in FindWatchpointByID() local
1317 watchpoint_sp = target_sp->GetWatchpointList().FindByID(wp_id); in FindWatchpointByID()
1318 sb_watchpoint.SetSP(watchpoint_sp); in FindWatchpointByID()
1342 lldb::WatchpointSP watchpoint_sp; in WatchpointCreateByAddress() local
1362 watchpoint_sp = in WatchpointCreateByAddress()
1365 sb_watchpoint.SetSP(watchpoint_sp); in WatchpointCreateByAddress()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStopInfo.cpp635 watchpoint_sp(w_sp) { in WatchpointSentry()
636 if (process_sp && watchpoint_sp) { in WatchpointSentry()
638 watchpoint_sp->TurnOnEphemeralMode(); in WatchpointSentry()
639 process_sp->DisableWatchpoint(watchpoint_sp, notify); in WatchpointSentry()
645 if (process_sp && watchpoint_sp) { in DoReenable()
646 bool was_disabled = watchpoint_sp->IsDisabledDuringEphemeralMode(); in DoReenable()
647 watchpoint_sp->TurnOffEphemeralMode(); in DoReenable()
650 process_sp->DisableWatchpoint(watchpoint_sp, notify); in DoReenable()
652 process_sp->EnableWatchpoint(watchpoint_sp, notify); in DoReenable()
671 WatchpointSP watchpoint_sp; member in lldb_private::StopInfoWatchpoint::WatchpointSentry
/freebsd/contrib/llvm-project/lldb/bindings/python/
H A Dpython-swigsafecast.swig67 PythonObject SWIGBridge::ToSWIGWrapper(lldb::WatchpointSP watchpoint_sp) {
68 return ToSWIGHelper(new lldb::SBWatchpoint(std::move(watchpoint_sp)),
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DSWIGPythonBridge.h93 static PythonObject ToSWIGWrapper(lldb::WatchpointSP watchpoint_sp);