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.cpp54 lldb::WatchpointSP watchpoint_sp(GetSP()); in GetID() local
55 if (watchpoint_sp) in GetID()
56 watch_id = watchpoint_sp->GetID(); in GetID()
87 lldb::WatchpointSP watchpoint_sp(GetSP()); in GetError() local
88 if (watchpoint_sp) { in GetError()
89 sb_error.SetError(watchpoint_sp->GetError().Clone()); in GetError()
109 lldb::WatchpointSP watchpoint_sp(GetSP()); in GetWatchAddress() local
110 if (watchpoint_sp) { in GetWatchAddress()
112 watchpoint_sp->GetTarget().GetAPIMutex()); in GetWatchAddress()
113 ret_addr = watchpoint_sp->GetLoadAddress(); in GetWatchAddress()
[all …]
H A DSBValue.cpp1494 WatchpointSP watchpoint_sp = in Watch() local
1498 if (watchpoint_sp) { in Watch()
1499 sb_watchpoint.SetSP(watchpoint_sp); in Watch()
1506 watchpoint_sp->SetDeclInfo(std::string(ss.GetString())); in Watch()
H A DSBTarget.cpp1284 lldb::WatchpointSP watchpoint_sp; in FindWatchpointByID() local
1290 watchpoint_sp = target_sp->GetWatchpointList().FindByID(wp_id); in FindWatchpointByID()
1291 sb_watchpoint.SetSP(watchpoint_sp); in FindWatchpointByID()
1316 lldb::WatchpointSP watchpoint_sp; in WatchpointCreateByAddress() local
1337 watchpoint_sp = in WatchpointCreateByAddress()
1340 sb_watchpoint.SetSP(watchpoint_sp); in WatchpointCreateByAddress()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStopInfo.cpp656 watchpoint_sp(w_sp) { in WatchpointSentry()
657 if (process_sp && watchpoint_sp) { in WatchpointSentry()
659 watchpoint_sp->TurnOnEphemeralMode(); in WatchpointSentry()
660 process_sp->DisableWatchpoint(watchpoint_sp, notify); in WatchpointSentry()
666 if (process_sp && watchpoint_sp) { in DoReenable()
667 bool was_disabled = watchpoint_sp->IsDisabledDuringEphemeralMode(); in DoReenable()
668 watchpoint_sp->TurnOffEphemeralMode(); in DoReenable()
671 process_sp->DisableWatchpoint(watchpoint_sp, notify); in DoReenable()
673 process_sp->EnableWatchpoint(watchpoint_sp, notify); in DoReenable()
692 WatchpointSP watchpoint_sp; member in lldb_private::StopInfoWatchpoint::WatchpointSentry
/freebsd/contrib/llvm-project/lldb/bindings/python/
H A Dpython-swigsafecast.swig72 PythonObject SWIGBridge::ToSWIGWrapper(lldb::WatchpointSP watchpoint_sp) {
73 return ToSWIGHelper(new lldb::SBWatchpoint(std::move(watchpoint_sp)),
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DSWIGPythonBridge.h97 static PythonObject ToSWIGWrapper(lldb::WatchpointSP watchpoint_sp);