Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolverScripted.cpp37 BreakpointSP breakpoint_sp) { in CreateImplementationIfNeeded() argument
44 if (!breakpoint_sp) in CreateImplementationIfNeeded()
47 TargetSP target_sp = breakpoint_sp->GetTargetSP(); in CreateImplementationIfNeeded()
54 m_class_name.c_str(), m_args, breakpoint_sp); in CreateImplementationIfNeeded()
H A DBreakpointIDList.cpp118 BreakpointSP breakpoint_sp; in FindAndReplaceIDRanges() local
121 breakpoint_sp = target->GetBreakpointByID(bp_id->GetBreakpointID()); in FindAndReplaceIDRanges()
122 if (!breakpoint_sp) { in FindAndReplaceIDRanges()
128 const size_t num_locations = breakpoint_sp->GetNumLocations(); in FindAndReplaceIDRanges()
131 breakpoint_sp->GetLocationAtIndex(j).get(); in FindAndReplaceIDRanges()
H A DBreakpointResolverAddress.cpp120 BreakpointSP breakpoint_sp = GetBreakpoint(); in SearchCallback() local
121 Breakpoint &breakpoint = *breakpoint_sp; in SearchCallback()
H A DBreakpointResolverName.cpp329 BreakpointSP breakpoint_sp = GetBreakpoint(); in SearchCallback() local
330 Breakpoint &breakpoint = *breakpoint_sp; in SearchCallback()
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointResolver.h64 auto breakpoint_sp = m_breakpoint.expired() ? lldb::BreakpointSP() : in GetBreakpoint() local
66 assert(breakpoint_sp); in GetBreakpoint()
67 return breakpoint_sp; in GetBreakpoint()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DLanguageRuntime.cpp163 BreakpointSP breakpoint_sp = GetBreakpoint(); in SetActualResolver() local
164 if (breakpoint_sp) { in SetActualResolver()
165 ProcessSP process_sp = breakpoint_sp->GetTarget().GetProcessSP(); in SetActualResolver()
182 breakpoint_sp, m_catch_bp, m_throw_bp); in SetActualResolver()
H A DTarget.cpp217 for (const auto &breakpoint_sp : target.m_breakpoint_list.Breakpoints()) { in PrimeFromDummyTarget() local
218 if (breakpoint_sp->IsInternal()) in PrimeFromDummyTarget()
222 Breakpoint::CopyFromBreakpoint(shared_from_this(), *breakpoint_sp)); in PrimeFromDummyTarget()
/freebsd/contrib/llvm-project/lldb/bindings/python/
H A Dpython-swigsafecast.swig40 PythonObject SWIGBridge::ToSWIGWrapper(lldb::BreakpointSP breakpoint_sp) {
41 return ToSWIGHelper(new lldb::SBBreakpoint(std::move(breakpoint_sp)),
H A Dpython-wrapper.swig235 const lldb::BreakpointSP &breakpoint_sp) {
252 pfunc(SWIGBridge::ToSWIGWrapper(breakpoint_sp), SWIGBridge::ToSWIGWrapper(args_impl), dict);
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/
H A DScriptInterpreterLua.cpp292 BreakpointSP breakpoint_sp = target->GetBreakpointByID(break_id); in BreakpointCallbackFunction() local
293 BreakpointLocationSP bp_loc_sp(breakpoint_sp->FindLocationByID(break_loc_id)); in BreakpointCallbackFunction()
/freebsd/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp1611 auto breakpoint_sp = target.CreateBreakpoint( in AddInitCompletionHook() local
1614 if (!breakpoint_sp) { in AddInitCompletionHook()
1625 breakpoint_sp->SetCallback(InitCompletionHookCallback, nullptr); in AddInitCompletionHook()
1626 m_breakpoint_id = breakpoint_sp->GetID(); in AddInitCompletionHook()
/freebsd/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDynamicLoaderPOSIXDYLD.cpp287 BreakpointSP breakpoint_sp = in EntryBreakpointHit() local
289 if (breakpoint_sp) { in EntryBreakpointHit()
294 breakpoint_sp->SetEnabled(false); in EntryBreakpointHit()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DSWIGPythonBridge.h91 static PythonObject ToSWIGWrapper(lldb::BreakpointSP breakpoint_sp);
H A DScriptInterpreterPython.cpp1897 BreakpointSP breakpoint_sp = target->GetBreakpointByID(break_id); in BreakpointCallbackFunction() local
1898 if (breakpoint_sp) { in BreakpointCallbackFunction()
1900 breakpoint_sp->FindLocationByID(break_loc_id)); in BreakpointCallbackFunction()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectBreakpoint.cpp1499 for (auto breakpoint_sp : breakpoints.Breakpoints()) { in DoExecute() local
1500 if (!breakpoint_sp->IsEnabled() && breakpoint_sp->AllowDelete()) { in DoExecute()
1501 BreakpointID bp_id(breakpoint_sp->GetID()); in DoExecute()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DTarget.h1695 void AddBreakpoint(lldb::BreakpointSP breakpoint_sp, bool internal);