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()
55 if (watchpoint_sp) in GetID() local
56 watch_id = watchpoint_sp->GetID(); in GetID()
87 lldb::WatchpointSP watchpoint_sp(GetSP()); in GetError()
88 if (watchpoint_sp) { in GetError() local
89 sb_error.SetError(watchpoint_sp->GetError()); in GetError()
109 lldb::WatchpointSP watchpoint_sp(GetSP());
110 if (watchpoint_sp) { in GetWatchAddress()
112 watchpoint_sp->GetTarget().GetAPIMutex()); in GetWatchAddress()
113 ret_addr = watchpoint_sp in GetWatchAddress()
100 lldb::WatchpointSP watchpoint_sp(GetSP()); GetHardwareIndex() local
115 lldb::WatchpointSP watchpoint_sp(GetSP()); GetWatchAddress() local
130 lldb::WatchpointSP watchpoint_sp(GetSP()); GetWatchSize() local
143 lldb::WatchpointSP watchpoint_sp(GetSP()); SetEnabled() local
163 lldb::WatchpointSP watchpoint_sp(GetSP()); IsEnabled() local
176 lldb::WatchpointSP watchpoint_sp(GetSP()); GetHitCount() local
189 lldb::WatchpointSP watchpoint_sp(GetSP()); GetIgnoreCount() local
201 lldb::WatchpointSP watchpoint_sp(GetSP()); SetIgnoreCount() local
212 lldb::WatchpointSP watchpoint_sp(GetSP()); GetCondition() local
224 lldb::WatchpointSP watchpoint_sp(GetSP()); SetCondition() local
238 lldb::WatchpointSP watchpoint_sp(GetSP()); GetDescription() local
298 lldb::WatchpointSP watchpoint_sp(GetSP()); GetType() local
311 lldb::WatchpointSP watchpoint_sp(GetSP()); GetWatchValueKind() local
325 lldb::WatchpointSP watchpoint_sp(GetSP()); GetWatchSpec() local
340 lldb::WatchpointSP watchpoint_sp(GetSP()); IsWatchingReads() local
353 lldb::WatchpointSP watchpoint_sp(GetSP()); IsWatchingWrites() local
[all...]
H A DSBValue.cpp1477 WatchpointSP watchpoint_sp = in Watch() local
1481 if (watchpoint_sp) { in Watch()
1482 sb_watchpoint.SetSP(watchpoint_sp); in Watch()
1489 watchpoint_sp->SetDeclInfo(std::string(ss.GetString())); in Watch()
H A DSBTarget.cpp1318 lldb::WatchpointSP watchpoint_sp; in FindWatchpointByID() local
1324 watchpoint_sp = target_sp->GetWatchpointList().FindByID(wp_id); in FindWatchpointByID()
1325 sb_watchpoint.SetSP(watchpoint_sp); in FindWatchpointByID()
1349 lldb::WatchpointSP watchpoint_sp; in WatchpointCreateByAddress() local
1369 watchpoint_sp = in WatchpointCreateByAddress()
1372 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.swig63 PythonObject SWIGBridge::ToSWIGWrapper(lldb::WatchpointSP watchpoint_sp) {
64 return ToSWIGHelper(new lldb::SBWatchpoint(std::move(watchpoint_sp)),
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DSWIGPythonBridge.h94 static PythonObject ToSWIGWrapper(lldb::WatchpointSP watchpoint_sp);