| /freebsd/contrib/llvm-project/lldb/source/Breakpoint/ |
| H A D | BreakpointResolverScripted.cpp | 37 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 D | BreakpointIDList.cpp | 118 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 D | BreakpointResolverAddress.cpp | 120 BreakpointSP breakpoint_sp = GetBreakpoint(); in SearchCallback() local 121 Breakpoint &breakpoint = *breakpoint_sp; in SearchCallback()
|
| H A D | BreakpointResolverName.cpp | 329 BreakpointSP breakpoint_sp = GetBreakpoint(); in SearchCallback() local 330 Breakpoint &breakpoint = *breakpoint_sp; in SearchCallback()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/ |
| H A D | BreakpointResolver.h | 64 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 D | LanguageRuntime.cpp | 163 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 D | Target.cpp | 217 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 D | python-swigsafecast.swig | 40 PythonObject SWIGBridge::ToSWIGWrapper(lldb::BreakpointSP breakpoint_sp) { 41 return ToSWIGHelper(new lldb::SBBreakpoint(std::move(breakpoint_sp)),
|
| H A D | python-wrapper.swig | 235 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 D | ScriptInterpreterLua.cpp | 292 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 D | StructuredDataDarwinLog.cpp | 1611 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 D | DynamicLoaderPOSIXDYLD.cpp | 287 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 D | SWIGPythonBridge.h | 91 static PythonObject ToSWIGWrapper(lldb::BreakpointSP breakpoint_sp);
|
| H A D | ScriptInterpreterPython.cpp | 1897 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 D | CommandObjectBreakpoint.cpp | 1499 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 D | Target.h | 1695 void AddBreakpoint(lldb::BreakpointSP breakpoint_sp, bool internal);
|