Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointList.cpp33 break_id_t BreakpointList::Add(BreakpointSP &bp_sp, bool notify) { in Add()
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 Remove()
67 for (const auto &bp_sp : m_breakpoints)
68 bp_sp->RemoveInvalidLocations(arch); in SetEnabledAll()
73 for (const auto &bp_sp : m_breakpoints)
74 bp_sp->SetEnabled(enabled); in SetEnabledAllowed()
79 for (const auto &bp_sp in SetEnabledAllowed()
30 Add(BreakpointSP & bp_sp,bool notify) Add() argument
64 for (const auto &bp_sp : m_breakpoints) RemoveInvalidLocations() local
70 for (const auto &bp_sp : m_breakpoints) SetEnabledAll() local
76 for (const auto &bp_sp : m_breakpoints) SetEnabledAllowed() local
86 for (const auto &bp_sp : m_breakpoints) RemoveAll() local
96 for (const auto &bp_sp : m_breakpoints) { RemoveAllowed() local
157 for (const auto &bp_sp : m_breakpoints) Dump() local
172 for (const auto &bp_sp : m_breakpoints) UpdateBreakpoints() local
179 for (const auto &bp_sp : m_breakpoints) UpdateBreakpointsWhenModuleIsReplaced() local
185 for (const auto &bp_sp : m_breakpoints) ClearAllBreakpointSites() local
191 for (const auto &bp_sp : m_breakpoints) ResetHitCounts() local
[all...]
H A DBreakpointName.cpp75 void BreakpointName::ConfigureBreakpoint(lldb::BreakpointSP bp_sp) in GetDescription()
77 bp_sp->GetOptions().CopyOverSetOptions(GetOptions()); in GetDescription()
78 bp_sp->GetPermissions().MergeInto(GetPermissions()); in GetDescription()
82 ConfigureBreakpoint(lldb::BreakpointSP bp_sp) ConfigureBreakpoint() argument
H A DWatchpoint.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()
H A DBreakpoint.cpp1078 BreakpointSP bp_sp; in GetBreakpointFromEvent() local
1082 bp_sp = data->m_new_breakpoint_sp; in GetBreakpointFromEvent()
1084 return bp_sp; in GetBreakpointFromEvent()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBBreakpointOptionCommon.cpp54 BreakpointSP bp_sp( in PrivateBreakpointHitCallback()
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()
55 BreakpointSP bp_sp( PrivateBreakpointHitCallback() local
H A DSBBreakpoint.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/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectBreakpoint.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 …]
H A DCommandObjectProcess.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/contrib/llvm-project/lldb/source/Target/
H A DTarget.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/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DStopInfoMachException.cpp511 lldb::BreakpointSiteSP bp_sp = in GetStopInfoForHardwareBP() local
514 if (bp_sp && bp_sp->IsEnabled()) { in GetStopInfoForHardwareBP()
516 bp_sp->GetID()); in GetStopInfoForHardwareBP()
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointList.h38 lldb::break_id_t Add(lldb::BreakpointSP &bp_sp, bool notify);
H A DBreakpointName.h185 void ConfigureBreakpoint(lldb::BreakpointSP bp_sp);
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBBreakpoint.h166 SBBreakpoint(const lldb::BreakpointSP &bp_sp);
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DIOHandlerCursesGUI.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/contrib/llvm-project/lldb/include/lldb/Target/
H A DTarget.h780 void AddNameToBreakpoint(lldb::BreakpointSP &bp_sp, llvm::StringRef name,
783 void RemoveNameFromBreakpoint(lldb::BreakpointSP &bp_sp, ConstString name);