Searched refs:bp_sp (Results 1 - 14 of 14) sorted by path

/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBBreakpoint.h25 SBBreakpoint(const lldb::BreakpointSP &bp_sp);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointList.h31 /// Add the breakpoint \a bp_sp to the list.
33 /// \param[in] bp_sp
38 lldb::break_id_t Add(lldb::BreakpointSP &bp_sp, bool notify);
H A DBreakpointName.h197 void ConfigureBreakpoint(lldb::BreakpointSP bp_sp);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DTarget.h682 void AddNameToBreakpoint(lldb::BreakpointSP &bp_sp, const char *name,
685 void RemoveNameFromBreakpoint(lldb::BreakpointSP &bp_sp, ConstString name);
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBBreakpoint.cpp55 SBBreakpoint::SBBreakpoint(const lldb::BreakpointSP &bp_sp) argument
56 : m_opaque_wp(bp_sp) {
57 LLDB_RECORD_CONSTRUCTOR(SBBreakpoint, (const lldb::BreakpointSP &), bp_sp);
H A DSBBreakpointOptionCommon.cpp55 BreakpointSP bp_sp(
57 if (baton && bp_sp) {
59 lldb_private::Breakpoint *bp = bp_sp.get();
66 assert(bp_sp);
67 sb_location.SetLocation(bp_sp->FindLocationByID(break_loc_id));
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpoint.cpp1073 BreakpointSP bp_sp; local
1077 bp_sp = data->m_new_breakpoint_sp;
1079 return bp_sp;
H A DBreakpointList.cpp31 break_id_t BreakpointList::Add(BreakpointSP &bp_sp, bool notify) { argument
35 bp_sp->SetID(m_is_internal ? --m_next_break_id : ++m_next_break_id);
37 m_breakpoints.push_back(bp_sp);
40 NotifyChange(bp_sp, eBreakpointEventTypeAdded);
42 return bp_sp->GetID();
65 for (const auto &bp_sp : m_breakpoints)
66 bp_sp->RemoveInvalidLocations(arch);
71 for (const auto &bp_sp : m_breakpoints)
72 bp_sp->SetEnabled(enabled);
77 for (const auto &bp_sp
[all...]
H A DBreakpointName.cpp82 void BreakpointName::ConfigureBreakpoint(lldb::BreakpointSP bp_sp) argument
84 bp_sp->GetOptions()->CopyOverSetOptions(GetOptions());
85 bp_sp->GetPermissions().MergeInto(GetPermissions());
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectBreakpoint.cpp542 BreakpointSP bp_sp = nullptr; variable
574 bp_sp = target.CreateBreakpoint(
590 bp_sp = target.CreateAddressInModuleBreakpoint(
593 bp_sp = target.CreateBreakpoint(m_options.m_load_addr, internal,
610 bp_sp = target.CreateBreakpoint(
629 bp_sp = target.CreateFuncRegexBreakpoint(
658 bp_sp = target.CreateSourceRegexBreakpoint(
665 bp_sp = target.CreateExceptionBreakpoint(
673 target.RemoveBreakpointByID(bp_sp->GetID());
681 bp_sp
1672 BreakpointSP bp_sp; variable
1776 BreakpointSP bp_sp = breakpoints.FindBreakpointByID(bp_id); variable
1853 BreakpointSP bp_sp = breakpoints.FindBreakpointByID(bp_id); variable
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp3426 BreakpointSP bp_sp = bp_list.GetBreakpointAtIndex(bp_idx); variable
3427 const size_t num_bps_locs = bp_sp->GetNumLocations();
3430 bp_sp->GetLocationAtIndex(bp_loc_idx);
3522 BreakpointSP bp_sp = bp_list.GetBreakpointAtIndex(bp_idx); variable
3523 const size_t num_bps_locs = bp_sp->GetNumLocations();
3527 bp_sp->GetLocationAtIndex(bp_loc_idx);
3733 BreakpointSP bp_sp = exe_ctx.GetTargetRef().CreateBreakpoint( variable
3746 bp_sp->GetOptions()->SetOneShot(true);
3757 BreakpointSP bp_sp = exe_ctx.GetTargetRef().CreateBreakpoint( variable
3762 bp_sp
3773 BreakpointSP bp_sp = exe_ctx.GetTargetRef().CreateBreakpoint( variable
3794 BreakpointSP bp_sp = exe_ctx.GetTargetRef().CreateBreakpoint( variable
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptRuntime.cpp1593 hook->bp_sp = target.CreateBreakpoint(addr, true, false);
1594 hook->bp_sp->SetCallback(HookCallback, hook.get(), true);
H A DRenderScriptRuntime.h464 lldb::BreakpointSP bp_sp; member in struct:lldb_private::RenderScriptRuntime::RuntimeHook
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp294 BreakpointSP bp_sp; local
297 bp_sp = m_internal_breakpoint_list.FindBreakpointByID(break_id);
299 bp_sp = m_breakpoint_list.FindBreakpointByID(break_id);
301 return bp_sp;
388 BreakpointSP bp_sp(CreateBreakpoint(so_addr, internal, hardware));
389 return bp_sp;
418 BreakpointSP bp_sp; local
431 bp_sp = CreateBreakpoint(filter_sp, resolver_sp, internal, hardware, true);
433 return bp_sp;
443 BreakpointSP bp_sp; local
469 BreakpointSP bp_sp; local
620 BreakpointSP bp_sp; local
631 AddBreakpoint(lldb::BreakpointSP bp_sp, bool internal) argument
656 BreakpointSP bp_sp = local
667 AddNameToBreakpoint(BreakpointSP &bp_sp, const char *name, Status &error) argument
717 RemoveNameFromBreakpoint(lldb::BreakpointSP &bp_sp, ConstString name) argument
939 BreakpointSP bp_sp; local
957 BreakpointSP bp_sp; local
[all...]

Completed in 185 milliseconds