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

/external/lldb/source/Breakpoint/
H A DWatchpointList.cpp34 WatchpointList::Add (const WatchpointSP &wp_sp, bool notify) argument
37 wp_sp->SetID(++m_next_wp_id);
38 m_watchpoints.push_back(wp_sp);
41 if (wp_sp->GetTarget().EventTypeHasListeners(Target::eBroadcastBitWatchpointChanged))
42 wp_sp->GetTarget().BroadcastEvent (Target::eBroadcastBitWatchpointChanged,
43 new Watchpoint::WatchpointEventData (eWatchpointEventTypeAdded, wp_sp));
45 return wp_sp->GetID();
72 WatchpointSP wp_sp; local
79 wp_sp = *pos;
84 return wp_sp;
90 WatchpointSP wp_sp; local
139 WatchpointSP wp_sp; local
151 WatchpointSP wp_sp = FindByAddress (addr); local
162 WatchpointSP wp_sp = FindBySpec (spec); local
174 WatchpointSP wp_sp; local
188 WatchpointSP wp_sp; local
215 WatchpointSP wp_sp = *pos; local
243 WatchpointSP wp_sp = FindByID (watch_id); local
[all...]
H A DWatchpoint.cpp482 WatchpointSP wp_sp; local
486 wp_sp = data->m_new_watchpoint_sp;
488 return wp_sp;
/external/lldb/source/Plugins/Process/Utility/
H A DStopInfoMachException.cpp370 lldb::WatchpointSP wp_sp;
372 wp_sp = target->GetWatchpointList().FindByAddress((lldb::addr_t)exc_sub_code);
373 if (wp_sp && wp_sp->IsEnabled())
378 wp_sp->SetHardwareIndex((uint32_t)exc_sub_sub_code);
379 return StopInfo::CreateStopReasonWithWatchpointID(thread, wp_sp->GetID());
405 lldb::WatchpointSP wp_sp; local
407 wp_sp = target->GetWatchpointList().FindByAddress((lldb::addr_t)exc_sub_code);
408 if (wp_sp && wp_sp
[all...]
/external/lldb/source/Target/
H A DStopInfo.cpp607 WatchpointSP wp_sp (thread_sp->CalculateTarget()->GetWatchpointList().FindByID(GetValue()));
608 if (wp_sp)
613 m_should_stop = wp_sp->ShouldStop (&context);
651 WatchpointSP wp_sp (thread_sp->CalculateTarget()->GetWatchpointList().FindByID(GetValue()));
652 if (wp_sp)
659 WatchpointSentry sentry(process, wp_sp.get());
692 if (m_should_stop && wp_sp->GetConditionText() != NULL)
707 wp_sp->GetConditionText(),
747 wp_sp->GetDescription (error_sp.get(), eDescriptionLevelBrief);
749 wp_sp
[all...]
H A DTarget.cpp561 WatchpointSP wp_sp; local
565 return wp_sp;
574 return wp_sp;
599 wp_sp = matched_sp;
600 wp_sp->SetEnabled(false, notify);
610 if (!wp_sp)
612 wp_sp.reset(new Watchpoint(*this, addr, size, type));
613 wp_sp->SetWatchpointType(kind, notify);
614 m_watchpoint_list.Add (wp_sp, true);
617 error = m_process_sp->EnableWatchpoint(wp_sp
776 WatchpointSP wp_sp = m_watchpoint_list.GetByIndex(i); local
811 WatchpointSP wp_sp = m_watchpoint_list.GetByIndex(i); local
844 WatchpointSP wp_sp = m_watchpoint_list.GetByIndex(i); local
866 WatchpointSP wp_sp = m_watchpoint_list.GetByIndex(i); local
890 WatchpointSP wp_sp = m_watchpoint_list.GetByIndex(i); local
[all...]
/external/lldb/include/lldb/API/
H A DSBWatchpoint.h25 SBWatchpoint (const lldb::WatchpointSP &wp_sp);
/external/lldb/include/lldb/Breakpoint/
H A DWatchpointList.h54 /// @param[in] wp_sp
61 Add (const lldb::WatchpointSP& wp_sp, bool notify);
/external/lldb/source/API/
H A DSBWatchpoint.cpp35 SBWatchpoint::SBWatchpoint (const lldb::WatchpointSP &wp_sp) : argument
36 m_opaque_sp (wp_sp)
44 log->Printf ("SBWatchpoint::SBWatchpoint (const lldb::WatchpointSP &wp_sp"
45 "=%p) => this.sp = %p (%s)", wp_sp.get(), m_opaque_sp.get(), sstr.GetData());
/external/lldb/source/Plugins/Process/POSIX/
H A DPOSIXThread.cpp460 lldb::WatchpointSP wp_sp = wp_list.FindByAddress(wp_monitor_addr); local
462 assert(wp_sp.get() && "No watchpoint found");
464 wp_sp->GetID()));
/external/lldb/source/Commands/
H A DCommandObjectWatchpoint.cpp865 WatchpointSP wp_sp = target->GetLastCreatedWatchpoint(); local
866 wp_sp->SetCondition(m_options.m_condition.c_str());
884 WatchpointSP wp_sp = watchpoints.FindByID(wp_ids[i]); local
885 if (wp_sp)
887 wp_sp->SetCondition(m_options.m_condition.c_str());
/external/lldb/include/lldb/Interpreter/
H A DScriptInterpreter.h95 const lldb::WatchpointSP &wp_sp);
/external/lldb/source/Interpreter/
H A DScriptInterpreterPython.cpp2294 WatchpointSP wp_sp = target->GetWatchpointList().FindByID (watch_id); local
2295 if (wp_sp)
2297 if (stop_frame_sp && wp_sp)
2305 wp_sp);

Completed in 2730 milliseconds