Home
last modified time | relevance | path

Searched refs:wp_sp (Results 1 – 13 of 13) sorted by relevance

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