| /freebsd/contrib/llvm-project/lldb/source/Breakpoint/ |
| H A D | BreakpointList.cpp | 33 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 …]
|
| H A D | BreakpointName.cpp | 71 void BreakpointName::ConfigureBreakpoint(lldb::BreakpointSP bp_sp) in ConfigureBreakpoint() argument 73 bp_sp->GetOptions().CopyOverSetOptions(GetOptions()); in ConfigureBreakpoint() 74 bp_sp->GetPermissions().MergeInto(GetPermissions()); in ConfigureBreakpoint()
|
| H A D | Watchpoint.cpp | 120 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 D | Breakpoint.cpp | 1150 BreakpointSP bp_sp; in GetBreakpointFromEvent() local 1154 bp_sp = data->m_new_breakpoint_sp; in GetBreakpointFromEvent() 1156 return bp_sp; in GetBreakpointFromEvent()
|
| /freebsd/contrib/llvm-project/lldb/source/API/ |
| H A D | SBBreakpointOptionCommon.cpp | 54 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 D | SBBreakpoint.cpp | 54 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 D | CommandObjectBreakpoint.cpp | 595 BreakpointSP bp_sp = nullptr; in DoExecute() local 625 bp_sp = target.CreateBreakpoint( in DoExecute() 641 bp_sp = target.CreateAddressInModuleBreakpoint( in DoExecute() 644 bp_sp = target.CreateBreakpoint(m_options.m_load_addr, internal, in DoExecute() 660 bp_sp = target.CreateBreakpoint( in DoExecute() 686 bp_sp = target.CreateFuncRegexBreakpoint( in DoExecute() 713 bp_sp = target.CreateSourceRegexBreakpoint( in DoExecute() 720 bp_sp = target.CreateExceptionBreakpoint( in DoExecute() 728 target.RemoveBreakpointByID(bp_sp->GetID()); in DoExecute() 735 bp_sp = target.CreateScriptedBreakpoint( in DoExecute() [all …]
|
| H A D | CommandObjectProcess.cpp | 569 BreakpointSP bp_sp in DoExecute() local 573 if (bp_sp->IsEnabled()) { in DoExecute() 577 size_t num_locations = bp_sp->GetNumLocations(); in DoExecute() 580 = bp_sp->GetLocationAtIndex(loc_idx); in DoExecute() 588 BreakpointLocationSP loc_sp = bp_sp->FindLocationByID(loc_id); in DoExecute() 625 for (BreakpointSP bp_sp : bkpt_list.Breakpoints()) { in DoExecute() local 626 break_id_t bp_id = bp_sp->GetID(); in DoExecute() 631 if (!bkpts_seen.count(bp_id) && bp_sp->IsEnabled()) { in DoExecute() 633 bp_sp->SetEnabled(false); in DoExecute() 640 size_t num_locations = bp_sp->GetNumLocations(); in DoExecute() [all …]
|
| /freebsd/contrib/llvm-project/lldb/source/Target/ |
| H A D | Target.cpp | 414 BreakpointSP bp_sp; in GetBreakpointByID() local 417 bp_sp = m_internal_breakpoint_list.FindBreakpointByID(break_id); in GetBreakpointByID() 419 bp_sp = m_breakpoint_list.FindBreakpointByID(break_id); in GetBreakpointByID() 421 return bp_sp; in GetBreakpointByID() 446 BreakpointSP bp_sp = CreateBreakpoint( in CreateBreakpointAtUserEntry() local 455 if (!bp_sp) { in CreateBreakpointAtUserEntry() 459 bp_sp->SetOneShot(true); in CreateBreakpointAtUserEntry() 460 return bp_sp; in CreateBreakpointAtUserEntry() 554 BreakpointSP bp_sp(CreateBreakpoint(so_addr, internal, hardware)); in CreateBreakpoint() local 555 return bp_sp; in CreateBreakpoint() [all …]
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/ |
| H A D | BreakpointList.h | 38 lldb::break_id_t Add(lldb::BreakpointSP &bp_sp, bool notify);
|
| H A D | BreakpointName.h | 186 void ConfigureBreakpoint(lldb::BreakpointSP bp_sp);
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/API/ |
| H A D | SBBreakpoint.h | 171 SBBreakpoint(const lldb::BreakpointSP &bp_sp);
|
| /freebsd/contrib/llvm-project/lldb/source/Core/ |
| H A D | IOHandlerCursesGUI.cpp | 6987 BreakpointSP bp_sp = bp_list.GetBreakpointAtIndex(bp_idx); in WindowDelegateDraw() local 6988 const size_t num_bps_locs = bp_sp->GetNumLocations(); in WindowDelegateDraw() 6991 bp_sp->GetLocationAtIndex(bp_loc_idx); in WindowDelegateDraw() 7100 BreakpointSP bp_sp = bp_list.GetBreakpointAtIndex(bp_idx); in WindowDelegateDraw() local 7101 const size_t num_bps_locs = bp_sp->GetNumLocations(); in WindowDelegateDraw() 7105 bp_sp->GetLocationAtIndex(bp_loc_idx); in WindowDelegateDraw() 7319 BreakpointSP bp_sp = exe_ctx.GetTargetRef().CreateBreakpoint( in WindowDelegateHandleChar() local 7332 bp_sp->GetOptions().SetOneShot(true); in WindowDelegateHandleChar() 7343 BreakpointSP bp_sp = exe_ctx.GetTargetRef().CreateBreakpoint( in WindowDelegateHandleChar() local 7348 bp_sp->GetOptions().SetOneShot(true); in WindowDelegateHandleChar() [all …]
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | Target.h | 812 void AddNameToBreakpoint(lldb::BreakpointSP &bp_sp, llvm::StringRef name, 815 void RemoveNameFromBreakpoint(lldb::BreakpointSP &bp_sp, ConstString name);
|