Home
last modified time | relevance | path

Searched refs:FindByID (Results 1 – 25 of 25) sorted by relevance

/external/llvm-project/lldb/include/lldb/Breakpoint/
DBreakpointSiteList.h68 lldb::BreakpointSiteSP FindByID(lldb::break_id_t breakID);
80 const lldb::BreakpointSiteSP FindByID(lldb::break_id_t breakID) const;
DBreakpointLocationList.h60 lldb::BreakpointLocationSP FindByID(lldb::break_id_t breakID) const;
DWatchpointList.h86 lldb::WatchpointSP FindByID(lldb::watch_id_t watchID) const;
/external/llvm-project/lldb/source/Breakpoint/
DBreakpointSiteList.cpp39 BreakpointSiteSP site_sp(FindByID(site_id)); in ShouldStop()
111 BreakpointSiteSP BreakpointSiteList::FindByID(lldb::break_id_t break_id) { in FindByID() function in BreakpointSiteList
122 BreakpointSiteList::FindByID(lldb::break_id_t break_id) const { in FindByID() function in BreakpointSiteList
DWatchpointList.cpp112 WatchpointSP WatchpointList::FindByID(lldb::watch_id_t watch_id) const { in FindByID() function in WatchpointList
199 WatchpointSP wp_sp = FindByID(watch_id); in ShouldStop()
DBreakpointLocationList.cpp44 BreakpointLocationSP bp = FindByID(break_id); in ShouldStop()
69 BreakpointLocationList::FindByID(lldb::break_id_t break_id) const { in FindByID() function in BreakpointLocationList
DBreakpoint.cpp276 return m_locations.FindByID(bp_loc_id); in FindLocationByID()
/external/llvm-project/lldb/source/Target/
DStopInfo.cpp108 thread_sp->GetProcess()->GetBreakpointSiteList().FindByID(m_value)); in StoreBPInfo()
126 process_sp->GetBreakpointSiteList().FindByID(m_value)); in IsValidForOperatingSystemThread()
141 thread_sp->GetProcess()->GetBreakpointSiteList().FindByID(m_value)); in ShouldStopSynchronous()
168 thread_sp->GetProcess()->GetBreakpointSiteList().FindByID(m_value)); in DoShouldNotify()
189 thread_sp->GetProcess()->GetBreakpointSiteList().FindByID(m_value)); in GetDescription()
281 thread_sp->GetProcess()->GetBreakpointSiteList().FindByID(m_value)); in PerformAction()
654 thread_sp->CalculateTarget()->GetWatchpointList().FindByID( in ShouldStopSynchronous()
696 thread_sp->CalculateTarget()->GetWatchpointList().FindByID( in PerformAction()
DThreadPlanStepThrough.cpp250 m_process.GetBreakpointSiteList().FindByID(stop_value); in HitOurBackstopBreakpoint()
DThreadPlanStepUntil.cpp158 m_process.GetBreakpointSiteList().FindByID(stop_info_sp->GetValue()); in AnalyzeStop()
DThreadPlanCallFunction.cpp286 bp_site_sp = m_process.GetBreakpointSiteList().FindByID(break_site_id); in DoPlanExplainsStop()
DThreadPlanStepOut.cpp294 m_process.GetBreakpointSiteList().FindByID(stop_info_sp->GetValue())); in DoPlanExplainsStop()
DThreadPlanStepRange.cpp396 m_process.GetBreakpointSiteList().FindByID(bp_site_id); in NextRangeBreakpointExplainsStop()
DStackFrameList.cpp150 m_thread.GetProcess()->GetBreakpointSiteList().FindByID(bp_site_id)); in ResetCurrentInlinedDepth()
DTarget.cpp1285 WatchpointSP wp_sp = m_watchpoint_list.FindByID(watch_id); in DisableWatchpointByID()
1304 WatchpointSP wp_sp = m_watchpoint_list.FindByID(watch_id); in EnableWatchpointByID()
1320 WatchpointSP watch_to_remove_sp = m_watchpoint_list.FindByID(watch_id); in RemoveWatchpointByID()
1340 WatchpointSP wp_sp = m_watchpoint_list.FindByID(watch_id); in IgnoreWatchpointByID()
DProcess.cpp1696 BreakpointSiteSP bp_site_sp = m_breakpoint_site_list.FindByID(break_id); in DisableBreakpointSiteByID()
1710 BreakpointSiteSP bp_site_sp = m_breakpoint_site_list.FindByID(break_id); in EnableBreakpointSiteByID()
/external/llvm-project/lldb/source/Commands/
DCommandObjectWatchpointCommand.cpp432 Watchpoint *wp = target->GetWatchpointList().FindByID(cur_wp_id).get(); in DoExecute()
542 Watchpoint *wp = target->GetWatchpointList().FindByID(cur_wp_id).get(); in DoExecute()
614 Watchpoint *wp = target->GetWatchpointList().FindByID(cur_wp_id).get(); in DoExecute()
DCommandObjectWatchpoint.cpp261 Watchpoint *wp = watchpoints.FindByID(wp_ids[i]).get(); in DoExecute()
796 WatchpointSP wp_sp = watchpoints.FindByID(wp_ids[i]); in DoExecute()
DCommandObjectProcess.cpp533 process->GetBreakpointSiteList().FindByID(bp_site_id)); in DoExecute()
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
DAppleThreadPlanStepThroughObjCTrampoline.cpp321 = process_sp->GetBreakpointSiteList().FindByID(break_site_id); in DoPlanExplainsStop()
/external/llvm-project/lldb/source/API/
DSBThread.cpp181 exe_ctx.GetProcessPtr()->GetBreakpointSiteList().FindByID( in GetStopReasonDataCount()
232 exe_ctx.GetProcessPtr()->GetBreakpointSiteList().FindByID( in GetStopReasonDataAtIndex()
DSBTarget.cpp1414 watchpoint_sp = target_sp->GetWatchpointList().FindByID(wp_id); in FindWatchpointByID()
/external/llvm-project/lldb/source/Plugins/Process/Windows/Common/
DProcessWindows.cpp421 GetTarget().GetWatchpointList().FindByID(id)) in RefreshStateAfterStop()
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
DScriptInterpreterPython.cpp2355 WatchpointSP wp_sp = target->GetWatchpointList().FindByID(watch_id); in WatchpointCallbackFunction()
/external/llvm-project/lldb/tools/debugserver/source/
DChangeLog739 (DNBBreakpoint::FindBreakpointWithBreakID()): Renamed to FindByID().