Searched refs:breakpoint_sp (Results 1 - 7 of 7) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointIDList.cpp165 BreakpointSP breakpoint_sp; local
168 breakpoint_sp = target->GetBreakpointByID(bp_id->GetBreakpointID());
169 if (!breakpoint_sp) {
176 const size_t num_locations = breakpoint_sp->GetNumLocations();
179 breakpoint_sp->GetLocationAtIndex(j).get();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDynamicLoaderPOSIXDYLD.cpp282 BreakpointSP breakpoint_sp = local
284 if (breakpoint_sp) {
289 breakpoint_sp->SetEnabled(false);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp1637 auto breakpoint_sp = target.CreateBreakpoint( local
1640 if (!breakpoint_sp) {
1651 breakpoint_sp->SetCallback(InitCompletionHookCallback, nullptr);
1652 m_breakpoint_id = breakpoint_sp->GetID();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp2290 BreakpointSP breakpoint_sp = target->GetBreakpointByID(break_id); local
2291 if (breakpoint_sp) {
2293 breakpoint_sp->FindLocationByID(break_loc_id));
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DTarget.h1358 void AddBreakpoint(lldb::BreakpointSP breakpoint_sp, bool internal);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptRuntime.cpp3686 BreakpointSP breakpoint_sp = local
3688 assert(breakpoint_sp != nullptr &&
3690 breakpoint_sp->SetEnabled(false); // Optimise since conditional breakpoint
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp131 for (BreakpointSP breakpoint_sp : target->m_breakpoint_list.Breakpoints()) {
132 if (breakpoint_sp->IsInternal())
135 BreakpointSP new_bp(new Breakpoint(*this, *breakpoint_sp.get()));

Completed in 215 milliseconds