Home
last modified time | relevance | path

Searched refs:bkpt_sp (Results 1 – 11 of 11) sorted by relevance

/external/llvm-project/lldb/source/API/
DSBBreakpoint.cpp87 BreakpointSP bkpt_sp = GetSP(); in GetTarget() local
88 if (bkpt_sp) in GetTarget()
89 return LLDB_RECORD_RESULT(SBTarget(bkpt_sp->GetTargetSP())); in GetTarget()
98 BreakpointSP bkpt_sp = GetSP(); in GetID() local
99 if (bkpt_sp) in GetID()
100 break_id = bkpt_sp->GetID(); in GetID()
112 BreakpointSP bkpt_sp = GetSP(); in operator bool() local
113 if (!bkpt_sp) in operator bool()
115 else if (bkpt_sp->GetTarget().GetBreakpointByID(bkpt_sp->GetID())) in operator bool()
124 BreakpointSP bkpt_sp = GetSP(); in ClearAllBreakpointSites() local
[all …]
DSBBreakpointName.cpp133 BreakpointSP bkpt_sp = sb_bkpt.GetSP(); in SBBreakpointName() local
134 Target &target = bkpt_sp->GetTarget(); in SBBreakpointName()
147 target.ConfigureBreakpointName(*bp_name, *bkpt_sp->GetOptions(), in SBBreakpointName()
DSBTarget.cpp1206 for (BreakpointSP bkpt_sp : *expected_vector) { in FindBreakpointsByName()
1207 bkpts.AppendByID(bkpt_sp->GetID()); in FindBreakpointsByName()
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
DAppleThreadPlanStepThroughObjCTrampoline.cpp276 for (BreakpointSP bkpt_sp : m_msgSend_bkpts) { in ~AppleThreadPlanStepThroughDirectDispatch() local
277 GetTarget().RemoveBreakpointByID(bkpt_sp->GetID()); in ~AppleThreadPlanStepThroughDirectDispatch()
291 for (auto bkpt_sp : m_msgSend_bkpts) { in GetDescription() local
296 s->Printf("%d", bkpt_sp->GetID()); in GetDescription()
386 for (BreakpointSP bkpt_sp : m_msgSend_bkpts) { in ShouldStop() local
387 bkpt_sp->SetEnabled(true); in ShouldStop()
411 for (BreakpointSP bkpt_sp : m_msgSend_bkpts) { in ShouldStop() local
412 bkpt_sp->SetEnabled(false); in ShouldStop()
/external/llvm-project/lldb/source/Breakpoint/
DBreakpointList.cpp144 for (BreakpointSP bkpt_sp : Breakpoints()) { in FindBreakpointsByName() local
145 if (bkpt_sp->MatchesName(name)) { in FindBreakpointsByName()
146 matching_bps.push_back(bkpt_sp); in FindBreakpointsByName()
DBreakpointIDList.cpp314 for (BreakpointSP bkpt_sp : target->GetBreakpointList().Breakpoints()) { in FindAndReplaceIDRanges() local
316 if (bkpt_sp->MatchesName(name.c_str())) { in FindAndReplaceIDRanges()
319 &canonical_id_str, bkpt_sp->GetID(), LLDB_INVALID_BREAK_ID); in FindAndReplaceIDRanges()
/external/llvm-project/lldb/unittests/ScriptInterpreter/Python/
DPythonTestSuite.cpp131 lldb_private::StructuredDataImpl *args, lldb::BreakpointSP &bkpt_sp) { in LLDBSwigPythonCreateScriptedBreakpointResolver() argument
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
DScriptInterpreterPython.cpp126 lldb_private::StructuredDataImpl *args, lldb::BreakpointSP &bkpt_sp);
1931 lldb::BreakpointSP &bkpt_sp) { in CreateScriptedBreakpointResolver() argument
1936 if (!bkpt_sp.get()) in CreateScriptedBreakpointResolver()
1939 Debugger &debugger = bkpt_sp->GetTarget().GetDebugger(); in CreateScriptedBreakpointResolver()
1954 bkpt_sp); in CreateScriptedBreakpointResolver()
DScriptInterpreterPythonImpl.h100 lldb::BreakpointSP &bkpt_sp) override;
/external/llvm-project/lldb/include/lldb/Interpreter/
DScriptInterpreter.h284 lldb::BreakpointSP &bkpt_sp) { in CreateScriptedBreakpointResolver() argument
/external/llvm-project/lldb/source/Target/
DTarget.cpp1120 BreakpointSP bkpt_sp = Breakpoint::CreateFromStructuredData( in CreateBreakpointsFromFile() local
1128 new_bps.AddBreakpointID(BreakpointID(bkpt_sp->GetID())); in CreateBreakpointsFromFile()