Home
last modified time | relevance | path

Searched refs:bp_sp (Results 1 – 15 of 15) sorted by relevance

/freebsd-14-stable/contrib/llvm-project/lldb/source/Breakpoint/
HDBreakpointList.cpp33 break_id_t BreakpointList::Add(BreakpointSP &bp_sp, bool notify) { in Add() argument
37 bp_sp->SetID(m_is_internal ? --m_next_break_id : ++m_next_break_id); in Add()
39 m_breakpoints.push_back(bp_sp); in Add()
42 NotifyChange(bp_sp, eBreakpointEventTypeAdded); in Add()
44 return bp_sp->GetID(); in Add()
67 for (const auto &bp_sp : m_breakpoints) in RemoveInvalidLocations() local
68 bp_sp->RemoveInvalidLocations(arch); in RemoveInvalidLocations()
73 for (const auto &bp_sp : m_breakpoints) in SetEnabledAll() local
74 bp_sp->SetEnabled(enabled); in SetEnabledAll()
79 for (const auto &bp_sp : m_breakpoints) in SetEnabledAllowed() local
[all …]
HDBreakpointName.cpp75 void BreakpointName::ConfigureBreakpoint(lldb::BreakpointSP bp_sp) in ConfigureBreakpoint() argument
77 bp_sp->GetOptions().CopyOverSetOptions(GetOptions()); in ConfigureBreakpoint()
78 bp_sp->GetPermissions().MergeInto(GetPermissions()); in ConfigureBreakpoint()
HDWatchpoint.cpp120 BreakpointSP bp_sp = target_sp->CreateBreakpoint( in SetupVariableWatchpointDisabler() local
122 if (!bp_sp || !bp_sp->HasResolvedLocations()) in SetupVariableWatchpointDisabler()
127 bp_sp->SetCallback(VariableWatchpointDisabler, baton_sp); in SetupVariableWatchpointDisabler()
128 bp_sp->SetOneShot(true); in SetupVariableWatchpointDisabler()
129 bp_sp->SetBreakpointKind("variable watchpoint disabler"); in SetupVariableWatchpointDisabler()
HDBreakpoint.cpp1078 BreakpointSP bp_sp; in GetBreakpointFromEvent() local
1082 bp_sp = data->m_new_breakpoint_sp; in GetBreakpointFromEvent()
1084 return bp_sp; in GetBreakpointFromEvent()
/freebsd-14-stable/contrib/llvm-project/lldb/source/API/
HDSBBreakpointOptionCommon.cpp54 BreakpointSP bp_sp( in PrivateBreakpointHitCallback() local
56 if (baton && bp_sp) { in PrivateBreakpointHitCallback()
58 lldb_private::Breakpoint *bp = bp_sp.get(); in PrivateBreakpointHitCallback()
65 assert(bp_sp); in PrivateBreakpointHitCallback()
66 sb_location.SetLocation(bp_sp->FindLocationByID(break_loc_id)); in PrivateBreakpointHitCallback()
HDSBBreakpoint.cpp54 SBBreakpoint::SBBreakpoint(const lldb::BreakpointSP &bp_sp) in SBBreakpoint() argument
55 : m_opaque_wp(bp_sp) { in SBBreakpoint()
56 LLDB_INSTRUMENT_VA(this, bp_sp); in SBBreakpoint()
/freebsd-14-stable/contrib/llvm-project/lldb/source/Commands/
HDCommandObjectBreakpoint.cpp572 BreakpointSP bp_sp = nullptr; in DoExecute() local
602 bp_sp = target.CreateBreakpoint( in DoExecute()
618 bp_sp = target.CreateAddressInModuleBreakpoint( in DoExecute()
621 bp_sp = target.CreateBreakpoint(m_options.m_load_addr, internal, in DoExecute()
637 bp_sp = target.CreateBreakpoint( in DoExecute()
663 bp_sp = target.CreateFuncRegexBreakpoint( in DoExecute()
690 bp_sp = target.CreateSourceRegexBreakpoint( in DoExecute()
697 bp_sp = target.CreateExceptionBreakpoint( in DoExecute()
705 target.RemoveBreakpointByID(bp_sp->GetID()); in DoExecute()
712 bp_sp = target.CreateScriptedBreakpoint( in DoExecute()
[all …]
HDCommandObjectProcess.cpp553 BreakpointSP bp_sp in DoExecute() local
557 if (bp_sp->IsEnabled()) { in DoExecute()
561 size_t num_locations = bp_sp->GetNumLocations(); in DoExecute()
564 = bp_sp->GetLocationAtIndex(loc_idx); in DoExecute()
572 BreakpointLocationSP loc_sp = bp_sp->FindLocationByID(loc_id); in DoExecute()
609 for (BreakpointSP bp_sp : bkpt_list.Breakpoints()) { in DoExecute() local
610 break_id_t bp_id = bp_sp->GetID(); in DoExecute()
615 if (!bkpts_seen.count(bp_id) && bp_sp->IsEnabled()) { in DoExecute()
617 bp_sp->SetEnabled(false); in DoExecute()
624 size_t num_locations = bp_sp->GetNumLocations(); in DoExecute()
[all …]
/freebsd-14-stable/contrib/llvm-project/lldb/source/Target/
HDTarget.cpp329 BreakpointSP bp_sp; in GetBreakpointByID() local
332 bp_sp = m_internal_breakpoint_list.FindBreakpointByID(break_id); in GetBreakpointByID()
334 bp_sp = m_breakpoint_list.FindBreakpointByID(break_id); in GetBreakpointByID()
336 return bp_sp; in GetBreakpointByID()
361 BreakpointSP bp_sp = CreateBreakpoint( in CreateBreakpointAtUserEntry() local
370 if (!bp_sp) { in CreateBreakpointAtUserEntry()
374 bp_sp->SetOneShot(true); in CreateBreakpointAtUserEntry()
375 return bp_sp; in CreateBreakpointAtUserEntry()
469 BreakpointSP bp_sp(CreateBreakpoint(so_addr, internal, hardware)); in CreateBreakpoint() local
470 return bp_sp; in CreateBreakpoint()
[all …]
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
HDStopInfoMachException.cpp511 lldb::BreakpointSiteSP bp_sp = in GetStopInfoForHardwareBP() local
514 if (bp_sp && bp_sp->IsEnabled()) { in GetStopInfoForHardwareBP()
516 bp_sp->GetID()); in GetStopInfoForHardwareBP()
/freebsd-14-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/
HDBreakpointList.h38 lldb::break_id_t Add(lldb::BreakpointSP &bp_sp, bool notify);
HDBreakpointName.h185 void ConfigureBreakpoint(lldb::BreakpointSP bp_sp);
/freebsd-14-stable/contrib/llvm-project/lldb/include/lldb/API/
HDSBBreakpoint.h166 SBBreakpoint(const lldb::BreakpointSP &bp_sp);
/freebsd-14-stable/contrib/llvm-project/lldb/source/Core/
HDIOHandlerCursesGUI.cpp6996 BreakpointSP bp_sp = bp_list.GetBreakpointAtIndex(bp_idx); in WindowDelegateDraw() local
6997 const size_t num_bps_locs = bp_sp->GetNumLocations(); in WindowDelegateDraw()
7000 bp_sp->GetLocationAtIndex(bp_loc_idx); in WindowDelegateDraw()
7108 BreakpointSP bp_sp = bp_list.GetBreakpointAtIndex(bp_idx); in WindowDelegateDraw() local
7109 const size_t num_bps_locs = bp_sp->GetNumLocations(); in WindowDelegateDraw()
7113 bp_sp->GetLocationAtIndex(bp_loc_idx); in WindowDelegateDraw()
7333 BreakpointSP bp_sp = exe_ctx.GetTargetRef().CreateBreakpoint( in WindowDelegateHandleChar() local
7346 bp_sp->GetOptions().SetOneShot(true); in WindowDelegateHandleChar()
7357 BreakpointSP bp_sp = exe_ctx.GetTargetRef().CreateBreakpoint( in WindowDelegateHandleChar() local
7362 bp_sp->GetOptions().SetOneShot(true); in WindowDelegateHandleChar()
[all …]
/freebsd-14-stable/contrib/llvm-project/lldb/include/lldb/Target/
HDTarget.h780 void AddNameToBreakpoint(lldb::BreakpointSP &bp_sp, llvm::StringRef name,
783 void RemoveNameFromBreakpoint(lldb::BreakpointSP &bp_sp, ConstString name);