Searched refs:wp_sp (Results 1 - 12 of 12) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/lldb/source/Breakpoint/
H A DWatchpointList.cpp21 lldb::watch_id_t WatchpointList::Add(const WatchpointSP &wp_sp, bool notify) { argument
23 wp_sp->SetID(++m_next_wp_id);
24 m_watchpoints.push_back(wp_sp);
26 if (wp_sp->GetTarget().EventTypeHasListeners(
28 wp_sp->GetTarget().BroadcastEvent(Target::eBroadcastBitWatchpointChanged,
30 eWatchpointEventTypeAdded, wp_sp));
32 return wp_sp->GetID();
54 WatchpointSP wp_sp; local
62 wp_sp = *pos;
68 return wp_sp;
72 WatchpointSP wp_sp; local
113 WatchpointSP wp_sp; local
123 WatchpointSP wp_sp = FindByAddress(addr); local
131 WatchpointSP wp_sp = FindBySpec(spec); local
140 WatchpointSP wp_sp; local
151 WatchpointSP wp_sp; local
172 WatchpointSP wp_sp = *pos; local
199 WatchpointSP wp_sp = FindByID(watch_id); local
[all...]
H A DWatchpoint.cpp381 WatchpointSP wp_sp; local
385 wp_sp = data->m_new_watchpoint_sp;
387 return wp_sp;
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DStopInfoMachException.cpp356 lldb::WatchpointSP wp_sp; local
358 wp_sp = target->GetWatchpointList().FindByAddress(
360 if (wp_sp && wp_sp->IsEnabled()) {
365 wp_sp->SetHardwareIndex((uint32_t)exc_sub_sub_code);
367 wp_sp->GetID());
389 lldb::WatchpointSP wp_sp; local
391 wp_sp = target->GetWatchpointList().FindByAddress(
393 if (wp_sp && wp_sp
432 lldb::WatchpointSP wp_sp; local
[all...]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Target/
H A DStopInfo.cpp653 WatchpointSP wp_sp(
656 if (wp_sp) {
660 m_should_stop = wp_sp->ShouldStop(&context);
695 WatchpointSP wp_sp(
698 if (wp_sp) {
716 Watchpoint *wp = wp_sp.get();
750 WatchpointSentry sentry(process_sp, wp_sp);
771 wp_sp->IncrementFalseAlarmsAndReviseHitCount();
785 if (wp_sp->GetHitCount() <= wp_sp
[all...]
H A DTarget.cpp787 WatchpointSP wp_sp; local
790 return wp_sp;
798 return wp_sp;
806 return wp_sp;
824 wp_sp = matched_sp;
825 wp_sp->SetEnabled(false, notify);
833 if (!wp_sp) {
834 wp_sp = std::make_shared<Watchpoint>(*this, addr, size, type);
835 wp_sp->SetWatchpointType(kind, notify);
836 m_watchpoint_list.Add(wp_sp, tru
1146 WatchpointSP wp_sp = m_watchpoint_list.GetByIndex(i); local
1177 WatchpointSP wp_sp = m_watchpoint_list.GetByIndex(i); local
1206 WatchpointSP wp_sp = m_watchpoint_list.GetByIndex(i); local
1224 WatchpointSP wp_sp = m_watchpoint_list.GetByIndex(i); local
1240 WatchpointSP wp_sp = m_watchpoint_list.GetByIndex(i); local
1260 WatchpointSP wp_sp = m_watchpoint_list.GetByIndex(i); local
[all...]
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBWatchpoint.h22 SBWatchpoint(const lldb::WatchpointSP &wp_sp);
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DWatchpointList.h42 /// \param[in] wp_sp
47 lldb::watch_id_t Add(const lldb::WatchpointSP &wp_sp, bool notify);
/freebsd-12-stable/contrib/llvm-project/lldb/source/API/
H A DSBWatchpoint.cpp31 SBWatchpoint::SBWatchpoint(const lldb::WatchpointSP &wp_sp) argument
32 : m_opaque_wp(wp_sp) {
33 LLDB_RECORD_CONSTRUCTOR(SBWatchpoint, (const lldb::WatchpointSP &), wp_sp);
/freebsd-12-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectWatchpoint.cpp740 WatchpointSP wp_sp = target->GetLastCreatedWatchpoint(); variable
741 wp_sp->SetCondition(m_options.m_condition.c_str());
756 WatchpointSP wp_sp = watchpoints.FindByID(wp_ids[i]); variable
757 if (wp_sp) {
758 wp_sp->SetCondition(m_options.m_condition.c_str());
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DFreeBSDThread.cpp510 lldb::WatchpointSP wp_sp = wp_list.FindByAddress(wp_monitor_addr); local
512 assert(wp_sp.get() && "No watchpoint found");
514 StopInfo::CreateStopReasonWithWatchpointID(*this, wp_sp->GetID()));
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp1865 WatchpointSP wp_sp;
1871 wp_sp = GetTarget().GetWatchpointList().FindByAddress(
1873 if (!wp_sp)
1874 wp_sp =
1876 if (wp_sp) {
1877 wp_sp->SetHardwareIndex(wp_index);
1878 watch_id = wp_sp->GetID();
2292 WatchpointSP wp_sp =
2296 if (wp_sp)
2297 wp_index = wp_sp
[all...]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp2356 WatchpointSP wp_sp = target->GetWatchpointList().FindByID(watch_id); local
2357 if (wp_sp) {
2358 if (stop_frame_sp && wp_sp) {
2367 wp_sp);

Completed in 285 milliseconds