| /freebsd-12-stable/contrib/llvm-project/lldb/source/Breakpoint/ |
| D | BreakpointList.cpp | 31 break_id_t BreakpointList::Add(BreakpointSP &bp_sp, bool notify) { in Add() argument 35 bp_sp->SetID(m_is_internal ? --m_next_break_id : ++m_next_break_id); in Add() 37 m_breakpoints.push_back(bp_sp); in Add() 40 NotifyChange(bp_sp, eBreakpointEventTypeAdded); in Add() 42 return bp_sp->GetID(); in Add() 65 for (const auto &bp_sp : m_breakpoints) in RemoveInvalidLocations() local 66 bp_sp->RemoveInvalidLocations(arch); in RemoveInvalidLocations() 71 for (const auto &bp_sp : m_breakpoints) in SetEnabledAll() local 72 bp_sp->SetEnabled(enabled); in SetEnabledAll() 77 for (const auto &bp_sp : m_breakpoints) in SetEnabledAllowed() local [all …]
|
| D | BreakpointName.cpp | 82 void BreakpointName::ConfigureBreakpoint(lldb::BreakpointSP bp_sp) in ConfigureBreakpoint() argument 84 bp_sp->GetOptions().CopyOverSetOptions(GetOptions()); in ConfigureBreakpoint() 85 bp_sp->GetPermissions().MergeInto(GetPermissions()); in ConfigureBreakpoint()
|
| D | Breakpoint.cpp | 1061 BreakpointSP bp_sp; in GetBreakpointFromEvent() local 1065 bp_sp = data->m_new_breakpoint_sp; in GetBreakpointFromEvent() 1067 return bp_sp; in GetBreakpointFromEvent()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/API/ |
| D | SBBreakpointOptionCommon.cpp | 55 BreakpointSP bp_sp( in PrivateBreakpointHitCallback() local 57 if (baton && bp_sp) { in PrivateBreakpointHitCallback() 59 lldb_private::Breakpoint *bp = bp_sp.get(); in PrivateBreakpointHitCallback() 66 assert(bp_sp); in PrivateBreakpointHitCallback() 67 sb_location.SetLocation(bp_sp->FindLocationByID(break_loc_id)); in PrivateBreakpointHitCallback()
|
| D | SBBreakpoint.cpp | 55 SBBreakpoint::SBBreakpoint(const lldb::BreakpointSP &bp_sp) in SBBreakpoint() argument 56 : m_opaque_wp(bp_sp) { in SBBreakpoint() 57 LLDB_RECORD_CONSTRUCTOR(SBBreakpoint, (const lldb::BreakpointSP &), bp_sp); in SBBreakpoint()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Commands/ |
| D | CommandObjectBreakpoint.cpp | 551 BreakpointSP bp_sp = nullptr; in DoExecute() local 581 bp_sp = target.CreateBreakpoint( in DoExecute() 597 bp_sp = target.CreateAddressInModuleBreakpoint( in DoExecute() 600 bp_sp = target.CreateBreakpoint(m_options.m_load_addr, internal, in DoExecute() 616 bp_sp = target.CreateBreakpoint( in DoExecute() 642 bp_sp = target.CreateFuncRegexBreakpoint( in DoExecute() 669 bp_sp = target.CreateSourceRegexBreakpoint( in DoExecute() 676 bp_sp = target.CreateExceptionBreakpoint( in DoExecute() 684 target.RemoveBreakpointByID(bp_sp->GetID()); in DoExecute() 691 bp_sp = target.CreateScriptedBreakpoint( in DoExecute() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Target/ |
| D | Target.cpp | 304 BreakpointSP bp_sp; in GetBreakpointByID() local 307 bp_sp = m_internal_breakpoint_list.FindBreakpointByID(break_id); in GetBreakpointByID() 309 bp_sp = m_breakpoint_list.FindBreakpointByID(break_id); in GetBreakpointByID() 311 return bp_sp; in GetBreakpointByID() 403 BreakpointSP bp_sp(CreateBreakpoint(so_addr, internal, hardware)); in CreateBreakpoint() local 404 return bp_sp; in CreateBreakpoint() 433 BreakpointSP bp_sp; in CreateBreakpoint() local 446 bp_sp = CreateBreakpoint(filter_sp, resolver_sp, internal, hardware, true); in CreateBreakpoint() 448 return bp_sp; in CreateBreakpoint() 458 BreakpointSP bp_sp; in CreateBreakpoint() local [all …]
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/ |
| D | StopInfoMachException.cpp | 319 lldb::BreakpointSiteSP bp_sp = in GetStopInfoForHardwareBP() local 322 if (bp_sp && bp_sp->IsEnabled()) { in GetStopInfoForHardwareBP() 326 bp_sp->SetHardwareIndex((uint32_t)exc_sub_sub_code); in GetStopInfoForHardwareBP() 328 bp_sp->GetID()); in GetStopInfoForHardwareBP()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/ |
| D | BreakpointList.h | 38 lldb::break_id_t Add(lldb::BreakpointSP &bp_sp, bool notify);
|
| D | BreakpointName.h | 197 void ConfigureBreakpoint(lldb::BreakpointSP bp_sp);
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Core/ |
| D | IOHandlerCursesGUI.cpp | 5447 BreakpointSP bp_sp = bp_list.GetBreakpointAtIndex(bp_idx); in WindowDelegateDraw() local 5448 const size_t num_bps_locs = bp_sp->GetNumLocations(); in WindowDelegateDraw() 5451 bp_sp->GetLocationAtIndex(bp_loc_idx); in WindowDelegateDraw() 5558 BreakpointSP bp_sp = bp_list.GetBreakpointAtIndex(bp_idx); in WindowDelegateDraw() local 5559 const size_t num_bps_locs = bp_sp->GetNumLocations(); in WindowDelegateDraw() 5563 bp_sp->GetLocationAtIndex(bp_loc_idx); in WindowDelegateDraw() 5781 BreakpointSP bp_sp = exe_ctx.GetTargetRef().CreateBreakpoint( in WindowDelegateHandleChar() local 5794 bp_sp->GetOptions().SetOneShot(true); in WindowDelegateHandleChar() 5805 BreakpointSP bp_sp = exe_ctx.GetTargetRef().CreateBreakpoint( in WindowDelegateHandleChar() local 5810 bp_sp->GetOptions().SetOneShot(true); in WindowDelegateHandleChar() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/API/ |
| D | SBBreakpoint.h | 25 SBBreakpoint(const lldb::BreakpointSP &bp_sp);
|
| /freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Target/ |
| D | Target.h | 720 void AddNameToBreakpoint(lldb::BreakpointSP &bp_sp, const char *name, 723 void RemoveNameFromBreakpoint(lldb::BreakpointSP &bp_sp, ConstString name);
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/ |
| D | RenderScriptRuntime.h | 472 lldb::BreakpointSP bp_sp; member
|
| D | RenderScriptRuntime.cpp | 1603 hook->bp_sp = target.CreateBreakpoint(addr, true, false); in LoadRuntimeHooks() 1604 hook->bp_sp->SetCallback(HookCallback, hook.get(), true); in LoadRuntimeHooks()
|