Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Breakpoint/
DBreakpointList.cpp31 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 …]
DBreakpointName.cpp82 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()
DBreakpoint.cpp1080 BreakpointSP bp_sp; in GetBreakpointFromEvent() local
1084 bp_sp = data->m_new_breakpoint_sp; in GetBreakpointFromEvent()
1086 return bp_sp; in GetBreakpointFromEvent()
/external/llvm-project/lldb/source/API/
DSBBreakpointOptionCommon.cpp55 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()
DSBBreakpoint.cpp55 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()
/external/llvm-project/lldb/source/Commands/
DCommandObjectBreakpoint.cpp558 BreakpointSP bp_sp = nullptr; in DoExecute() local
590 bp_sp = target.CreateBreakpoint( in DoExecute()
606 bp_sp = target.CreateAddressInModuleBreakpoint( in DoExecute()
609 bp_sp = target.CreateBreakpoint(m_options.m_load_addr, internal, in DoExecute()
626 bp_sp = target.CreateBreakpoint( in DoExecute()
653 bp_sp = target.CreateFuncRegexBreakpoint( in DoExecute()
682 bp_sp = target.CreateSourceRegexBreakpoint( in DoExecute()
689 bp_sp = target.CreateExceptionBreakpoint( in DoExecute()
697 target.RemoveBreakpointByID(bp_sp->GetID()); in DoExecute()
705 bp_sp = target.CreateScriptedBreakpoint( in DoExecute()
[all …]
/external/llvm-project/lldb/source/Target/
DTarget.cpp302 BreakpointSP bp_sp; in GetBreakpointByID() local
305 bp_sp = m_internal_breakpoint_list.FindBreakpointByID(break_id); in GetBreakpointByID()
307 bp_sp = m_breakpoint_list.FindBreakpointByID(break_id); in GetBreakpointByID()
309 return bp_sp; in GetBreakpointByID()
396 BreakpointSP bp_sp(CreateBreakpoint(so_addr, internal, hardware)); in CreateBreakpoint() local
397 return bp_sp; in CreateBreakpoint()
426 BreakpointSP bp_sp; in CreateBreakpoint() local
439 bp_sp = CreateBreakpoint(filter_sp, resolver_sp, internal, hardware, true); in CreateBreakpoint()
441 return bp_sp; in CreateBreakpoint()
451 BreakpointSP bp_sp; in CreateBreakpoint() local
[all …]
/external/llvm-project/lldb/source/Plugins/Process/Utility/
DStopInfoMachException.cpp319 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()
/external/llvm-project/lldb/source/Core/
DIOHandlerCursesGUI.cpp3612 BreakpointSP bp_sp = bp_list.GetBreakpointAtIndex(bp_idx); in WindowDelegateDraw() local
3613 const size_t num_bps_locs = bp_sp->GetNumLocations(); in WindowDelegateDraw()
3616 bp_sp->GetLocationAtIndex(bp_loc_idx); in WindowDelegateDraw()
3723 BreakpointSP bp_sp = bp_list.GetBreakpointAtIndex(bp_idx); in WindowDelegateDraw() local
3724 const size_t num_bps_locs = bp_sp->GetNumLocations(); in WindowDelegateDraw()
3728 bp_sp->GetLocationAtIndex(bp_loc_idx); in WindowDelegateDraw()
3946 BreakpointSP bp_sp = exe_ctx.GetTargetRef().CreateBreakpoint( in WindowDelegateHandleChar() local
3959 bp_sp->GetOptions()->SetOneShot(true); in WindowDelegateHandleChar()
3970 BreakpointSP bp_sp = exe_ctx.GetTargetRef().CreateBreakpoint( in WindowDelegateHandleChar() local
3975 bp_sp->GetOptions()->SetOneShot(true); in WindowDelegateHandleChar()
[all …]
/external/llvm-project/lldb/include/lldb/Breakpoint/
DBreakpointList.h38 lldb::break_id_t Add(lldb::BreakpointSP &bp_sp, bool notify);
DBreakpointName.h197 void ConfigureBreakpoint(lldb::BreakpointSP bp_sp);
/external/llvm-project/lldb/include/lldb/API/
DSBBreakpoint.h25 SBBreakpoint(const lldb::BreakpointSP &bp_sp);
/external/llvm-project/lldb/source/Plugins/Platform/MacOSX/
DPlatformDarwin.cpp1174 BreakpointSP bp_sp; in SetThreadCreationBreakpoint() local
1191 bp_sp = target.CreateBreakpoint(&bp_modules, nullptr, g_bp_names, in SetThreadCreationBreakpoint()
1195 bp_sp->SetBreakpointKind("thread-creation"); in SetThreadCreationBreakpoint()
1197 return bp_sp; in SetThreadCreationBreakpoint()
/external/llvm-project/lldb/include/lldb/Target/
DTarget.h712 void AddNameToBreakpoint(lldb::BreakpointSP &bp_sp, const char *name,
715 void RemoveNameFromBreakpoint(lldb::BreakpointSP &bp_sp, ConstString name);
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
DRenderScriptRuntime.h472 lldb::BreakpointSP bp_sp; member
DRenderScriptRuntime.cpp1603 hook->bp_sp = target.CreateBreakpoint(addr, true, false); in LoadRuntimeHooks()
1604 hook->bp_sp->SetCallback(HookCallback, hook.get(), true); in LoadRuntimeHooks()